Fixed code smell 'Unused local variables should be removed'.

This commit is contained in:
Yogesh Mahajan
2020-07-24 12:15:29 +05:30
committed by Akshay Joshi
parent 1fbf298d30
commit dd27e08a98
14 changed files with 16 additions and 16 deletions

View File

@@ -65,7 +65,7 @@ def get_python_deps():
try:
distribution = pkg_resources.get_distribution(pkg)
except IndexError as e:
except IndexError:
# The package probably isn't required on this version of Python,
# thus we have no info about it.
have_unknowns = True