Skip to content

Commit

Permalink
feat: black formatting update
Browse files Browse the repository at this point in the history
  • Loading branch information
lchen-2101 committed Sep 14, 2023
1 parent 958dfdd commit 0da7942
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/oauth2/oauth2_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ def get_claims(self, token: str) -> Dict[str, str] | None:
key=self._get_keys(),
issuer=os.getenv("KC_REALM_URL"),
audience=os.getenv("AUTH_CLIENT"),
options={"verify_at_hash": False, "verify_aud": False, "verify_iss": False},
options={
"verify_at_hash": False,
"verify_aud": False,
"verify_iss": False,
},
)
except jose.ExpiredSignatureError:
pass
Expand Down

0 comments on commit 0da7942

Please sign in to comment.