mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 01:09:40 +08:00
Fix mypy error in web_programming/reddit.py (#9162)
* updating DIRECTORY.md * updating DIRECTORY.md * Fix mypy error in web_programming/reddit.py web_programming/reddit.py:36: error: Missing named argument "response" for "HTTPError" [call-arg] --------- Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@ -33,7 +33,7 @@ def get_subreddit_data(
|
||||
headers={"User-agent": "A random string"},
|
||||
)
|
||||
if response.status_code == 429:
|
||||
raise requests.HTTPError
|
||||
raise requests.HTTPError(response=response)
|
||||
|
||||
data = response.json()
|
||||
if not wanted_data:
|
||||
|
Reference in New Issue
Block a user