Skip to content

Commit 8eacb36

Browse files
committed
resolutions.py: Fix a code style issue
This was flagged by `black` and lead to a failure in the test suite. Signed-off-by: Frank Viernau <[email protected]>
1 parent 98ee99b commit 8eacb36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python_inspector/resolution.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def get_requirements_from_python_manifest(
303303
else:
304304
# Do not raise exception here as we may have a setup.py that does not
305305
# have any dependencies.
306-
with (open(setup_py_location)) as sf:
306+
with open(setup_py_location) as sf:
307307
file_contents = sf.read()
308308
node = ast.parse(file_contents)
309309
setup_fct = [

0 commit comments

Comments
 (0)