Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Jul 26, 2022
1 parent 2d594c8 commit 5fc3967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyperformance/_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def extra_opts(self):
def setup_py(self):
if not self._get_metadata_value('install_setup', False):
return None
filename = os.path.join(os.path.dirname(self.metafile), 'setup.py'))
filename = os.path.join(os.path.dirname(self.metafile), 'setup.py')
return filename if os.path.exists(filename) else None

# Other metadata keys:
Expand Down

0 comments on commit 5fc3967

Please sign in to comment.