We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98ee99b commit 8eacb36Copy full SHA for 8eacb36
src/python_inspector/resolution.py
@@ -303,7 +303,7 @@ def get_requirements_from_python_manifest(
303
else:
304
# Do not raise exception here as we may have a setup.py that does not
305
# have any dependencies.
306
- with (open(setup_py_location)) as sf:
+ with open(setup_py_location) as sf:
307
file_contents = sf.read()
308
node = ast.parse(file_contents)
309
setup_fct = [
0 commit comments