Skip to content

Commit

Permalink
Fix black lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sergio-costas committed Jul 27, 2023
1 parent 32f5de5 commit d315c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snapcraft/linters/library_linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def _find_deb_package(self, library_name):
output = subprocess.run(
["dpkg", "-S", path], check=False, stdout=subprocess.PIPE
)
except: # pylint: disable=bare-except
except: # pylint: disable=bare-except
return None
if output.returncode != 0:
return None
Expand Down

0 comments on commit d315c3b

Please sign in to comment.