diff --git a/tiled/authenticators.py b/tiled/authenticators.py index 7f3403d5f..b74b858b9 100644 --- a/tiled/authenticators.py +++ b/tiled/authenticators.py @@ -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()