Fix flake8 errors

This commit is contained in:
Thomas Schraitle
2016-12-19 20:58:28 +01:00
parent 7afb3805db
commit 9f60ad5a49
2 changed files with 2 additions and 1 deletions

View File

@@ -103,7 +103,7 @@ VersionInfo = collections.namedtuple(
# Only change it for Python > 3 as it is readonly # Only change it for Python > 3 as it is readonly
# for version 2 # for version 2
if sys.version_info > (3,0): if sys.version_info > (3, 0):
VersionInfo.__doc__ = """ VersionInfo.__doc__ = """
:param int major: version when you make incompatible API changes. :param int major: version when you make incompatible API changes.
:param int minor: version when you add functionality in :param int minor: version when you add functionality in

View File

@@ -69,6 +69,7 @@ def read_file(filename):
with open(join(dirname(__file__), filename)) as f: with open(join(dirname(__file__), filename)) as f:
return f.read() return f.read()
setup( setup(
name=package.__name__, name=package.__name__,
version=package.__version__, version=package.__version__,