Skip to content

Commit

Permalink
Fix flake8 errors in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmaanT committed Apr 27, 2019
1 parent 6da1165 commit fb4eb1a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
from setuptools import setup
from setuptools.command.install import install

VERSION = "0.3.2"

VERSION = '0.3.2'


class VerifyVersionCommand(install):
Expand All @@ -15,7 +16,7 @@ def run(self):
tag = os.getenv('CIRCLE_TAG')

if tag != VERSION:
info = "Git tag: {0} does not match the version of this app: {1}".format(
info = 'Git tag: {0} does not match the version of this app: {1}'.format(
tag, VERSION
)
sys.exit(info)
Expand Down

0 comments on commit fb4eb1a

Please sign in to comment.