📝(oidc) fix misleading docstring in AuthorizationServerClient

The docstring referenced a `url_jwks` parameter that is not used by
the AuthorizationServerClient constructor. It appears to have been
copied from JWTAuthorizationServerClient.

Update the docstring to reflect the actual behavior of the class.
This commit is contained in:
lebaudantoine
2026-03-12 11:25:40 +01:00
committed by Lebaud Antoine
parent 1b6aeb51db
commit 1534cbffd1
2 changed files with 2 additions and 1 deletions

View File

@@ -24,6 +24,7 @@ and this project adheres to
### Fixed
- 🐛(oidc) use correct session key for token expiration check #56
- 📝(oidc) fix misleading docstring in AuthorizationServerClient #66
## [0.0.23] - 2026-01-14

View File

@@ -23,7 +23,7 @@ class AuthorizationServerClient:
_header_accept = "application/json"
def __init__(self):
"""Require at a minimum url, url_jwks and url_introspection."""
"""Require at a minimum url and url_introspection."""
self.url = settings.OIDC_OP_URL
self._verify_ssl = settings.OIDC_VERIFY_SSL
self._timeout = settings.OIDC_TIMEOUT