Skip to content
Snippets Groups Projects
Commit 16b0c379 authored by Jarrod Pas's avatar Jarrod Pas
Browse files

Remove unnecessary parens after 'return' keyword

parent 7b55311a
No related branches found
No related tags found
2 merge requests!3Version 0.2,!1Full rewrite
......@@ -7,7 +7,7 @@ def extract_version():
with open(path.join('pydtn', '__init__.py')) as f:
for line in f:
if line.startswith('__version__'):
return(line.split("'")[1])
return line.split("'")[1]
def extract_requirements():
with open('requirements.txt') as f:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment