mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-08-09 14:34:53 +02:00
misc: fix lint
This commit is contained in:
3
setup.py
3
setup.py
@ -1,11 +1,12 @@
|
|||||||
"""wal - setup.py"""
|
"""wal - setup.py"""
|
||||||
import setuptools
|
import setuptools
|
||||||
|
import sys
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import pywal
|
import pywal
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("error: pywal requires Python 3.5 or greater.")
|
print("error: pywal requires Python 3.5 or greater.")
|
||||||
quit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
LONG_DESC = open('README.md').read()
|
LONG_DESC = open('README.md').read()
|
||||||
VERSION = pywal.__version__
|
VERSION = pywal.__version__
|
||||||
|
Reference in New Issue
Block a user