Skip to content

Commit

Permalink
pylint: fix unused-variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Rechi committed May 28, 2024
1 parent e40fd08 commit 42d2562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kodi_addon_checker/addons/Repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(self, version, path):
try:
response = self._session.get(path, timeout=(30, 30))
response.raise_for_status()
except requests.exceptions.RequestException as exc:
except requests.exceptions.RequestException:
return
content = response.content

Expand Down

0 comments on commit 42d2562

Please sign in to comment.