Skip to content

Commit

Permalink
removed newline from version
Browse files Browse the repository at this point in the history
  • Loading branch information
coleslaw481 committed Jun 27, 2022
1 parent b0eb469 commit a2ee0fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
with open(os.path.join('ndex2', 'version.py')) as ver_file:
for line in ver_file:
if line.startswith('__version__'):
version=re.sub("'", "", line[line.index("'"):])
version=re.sub("'", "", line[line.index("'"):]).rstrip()


test_requirements = [
Expand Down

0 comments on commit a2ee0fb

Please sign in to comment.