Skip to content

Commit 0b1b274

Browse files
committed
lint
1 parent 72f61e6 commit 0b1b274

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/toolbox-core/src/toolbox_core/auth_methods.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ def _update_cache(new_token: str) -> None:
7171
# verify_oauth2_token not only decodes but also validates the token's
7272
# signature and claims against Google's public keys.
7373
# It's a synchronous, CPU-bound operation, safe for async contexts.
74-
claims = id_token.verify_oauth2_token(new_token, Request(), clock_skew_in_seconds=60)
74+
claims = id_token.verify_oauth2_token(
75+
new_token, Request(), clock_skew_in_seconds=60
76+
)
7577

7678
expiry_timestamp = claims.get("exp")
7779
if not expiry_timestamp:

0 commit comments

Comments
 (0)