Skip to content

Commit

Permalink
Revert unrelated change
Browse files Browse the repository at this point in the history
  • Loading branch information
disrupted committed Feb 26, 2024
1 parent 175a5d5 commit 4050978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keycloak/oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ def __init__(
auth_method = PrivateKeyJWT(token_endpoint)
client_kwargs.update(
{
"code_challenge_method": "S256",
"client_auth_methods": [auth_method],
"token_endpoint_auth_method": auth_method.name,
}
Expand All @@ -66,6 +65,7 @@ def __init__(
client_secret=client_secret,
server_metadata_url=server_metadata_url,
client_kwargs=client_kwargs,
code_challenge_method="S256",
)

assert isinstance(oauth.keycloak, StarletteOAuth2App)
Expand Down

0 comments on commit 4050978

Please sign in to comment.