Skip to content

Commit

Permalink
Ignore mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
SorooshMani-NOAA committed Oct 2, 2023
1 parent 6238df7 commit 3f36f71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion searvey/erddap.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def urlopen(
try:
response.raise_for_status()
except requests.exceptions.HTTPError as err:
raise requests.exceptions.HTTPError(f"{response.content.decode()}") from err
raise requests.exceptions.HTTPError(f"{response.content.decode()}") from err # type: ignore[call-arg]
data = io.BytesIO(response.content)
data.seek(0)
return data
Expand Down

0 comments on commit 3f36f71

Please sign in to comment.