Skip to content

Commit

Permalink
resolutions.py: Fix a code style issue
Browse files Browse the repository at this point in the history
This was flagged by `black` and lead to a failure in the test suite.

Signed-off-by: Frank Viernau <[email protected]>
  • Loading branch information
fviernau committed Sep 25, 2023
1 parent 98ee99b commit 8eacb36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python_inspector/resolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def get_requirements_from_python_manifest(
else:
# Do not raise exception here as we may have a setup.py that does not
# have any dependencies.
with (open(setup_py_location)) as sf:
with open(setup_py_location) as sf:
file_contents = sf.read()
node = ast.parse(file_contents)
setup_fct = [
Expand Down

0 comments on commit 8eacb36

Please sign in to comment.