misc: fix lint

This commit is contained in:
Dylan Araps 2019-09-27 20:37:23 +03:00
parent 56c60ca2e6
commit 445b8fcbb6

View File

@ -1,11 +1,12 @@
"""wal - setup.py"""
import setuptools
import sys
try:
import pywal
except ImportError:
print("error: pywal requires Python 3.5 or greater.")
quit(1)
sys.exit(1)
LONG_DESC = open('README.md').read()
VERSION = pywal.__version__