From 0f7d9a14cb36aee4a7abe1113b9153ae8a674761 Mon Sep 17 00:00:00 2001 From: Frank Sauerburger <frank@sauerburger.com> Date: Tue, 20 Aug 2019 23:02:43 +0200 Subject: [PATCH] Fix linter issues --- setup.py | 6 +++--- {{ PN }}/__init__.py | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index e3a4756..bb7d800 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ """ This script is used to install {{ PN }} and all its dependencies. Run - python setup.py install + python setup.py install or python3 setup.py install @@ -31,6 +31,6 @@ setup(name='{{ PN }}', author="Frank Sauerburger", author_email="frank@sauerburger.com", # keywords="physics value error uncertainty unit quantity", - license="MIT", classifiers=[], # https://pypi.org/classifiers/ -) + license="MIT") + diff --git a/{{ PN }}/__init__.py b/{{ PN }}/__init__.py index 16b53b1..4de45a1 100644 --- a/{{ PN }}/__init__.py +++ b/{{ PN }}/__init__.py @@ -6,3 +6,4 @@ Module description """ __version__ = "0.0.0" # Also change in setup.py + -- GitLab