mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-02-03 20:10:31 +01:00
misc: fix lint
This commit is contained in:
parent
56c60ca2e6
commit
445b8fcbb6
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__
|
||||||
|
Loading…
Reference in New Issue
Block a user