Skip to content

Commit

Permalink
Pylint again
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Feb 3, 2024
1 parent 889b53e commit d280674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netkan/netkan/spacedock_adder.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def make_github_netkan(self, ident: str, gh_repo: Repository, info: Dict[str, An
props: Dict[str, Any] = {}
try:
latest_release = gh_repo.get_latest_release()
except: # pylint: disable=broad-except
except: # pylint: disable=broad-except,bare-except
logging.warning('No releases found on GitHub for %s, omitting GitHub section', ident)
return None
tag_name = latest_release.tag_name
Expand Down

0 comments on commit d280674

Please sign in to comment.