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 021e4c4 commit 94d2e99Copy full SHA for 94d2e99
scripts/1-fetch/github_fetch.py
@@ -150,13 +150,10 @@ def query_github(args, session):
150
)
151
LOGGER.info(f"count: {count}")
152
except requests.HTTPError as e:
153
- LOGGER.error(f"HTTP Error: {e}")
154
raise shared.QuantifyingException(f"HTTP Error: {e}", 1)
155
except requests.RequestException as e:
156
- LOGGER.error(f"Request Exception: {e}")
157
raise shared.QuantifyingException(f"Request Exception: {e}", 1)
158
except KeyError as e:
159
- LOGGER.error(f"KeyError: {e}.")
160
raise shared.QuantifyingException(f"KeyError: {e}", 1)
161
return tool_data
162
0 commit comments