From 0da79426002e05dc98810774a0837a7f0ec8a5b3 Mon Sep 17 00:00:00 2001 From: lchen-2101 <73617864+lchen-2101@users.noreply.github.com> Date: Thu, 14 Sep 2023 12:23:04 -0400 Subject: [PATCH] feat: black formatting update --- src/oauth2/oauth2_admin.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/oauth2/oauth2_admin.py b/src/oauth2/oauth2_admin.py index f2cbe3c..0b473d1 100644 --- a/src/oauth2/oauth2_admin.py +++ b/src/oauth2/oauth2_admin.py @@ -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