Skip to content

Commit

Permalink
Drop redundant raise_for_status
Browse files Browse the repository at this point in the history
  • Loading branch information
danielballan committed Jan 17, 2025
1 parent 2db87e7 commit 4abacde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiled/authenticators.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def __init__(

@functools.cached_property
def _config_from_oidc_url(self) -> dict[str, Any]:
response: httpx.Response = httpx.get(self._well_known_url).raise_for_status()
response: httpx.Response = httpx.get(self._well_known_url)
response.raise_for_status()
return response.json()

Expand Down

0 comments on commit 4abacde

Please sign in to comment.