Skip to content

Commit

Permalink
Ignore mypy unused-ignore error on Python >=3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Jan 5, 2025
1 parent 92b6970 commit 49b2dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/app/managers/test_user_file_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -883,4 +883,4 @@ def __init__(self, exception_msg: str):
self._exception_msg = exception_msg

def raise_for_status(self):
raise HTTPError(self._exception_msg, self._exception_msg, response=None) # type: ignore[arg-type]
raise HTTPError(self._exception_msg, self._exception_msg, response=None) # type: ignore[arg-type,unused-ignore] # Fixed in types-requests 2.31.0.9 , which requires Python >=3.9 via urllib3 >=2

0 comments on commit 49b2dca

Please sign in to comment.