Skip to content

Commit a4d154c

Browse files
committed
lint
1 parent 7539808 commit a4d154c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,15 @@
2929

3030
import time
3131
from functools import partial
32-
from typing import Optional, Dict, Any
32+
from typing import Any, Dict, Optional
3333

3434
import google.auth
35-
from google.auth._credentials_async import Credentials
3635
import jwt
36+
from google.auth._credentials_async import Credentials
3737
from google.auth._default_async import default_async
3838
from google.auth.transport import _aiohttp_requests
3939
from google.auth.transport.requests import AuthorizedSession, Request
4040

41-
4241
# --- Constants and Configuration ---
4342
# Prefix for Authorization header tokens
4443
BEARER_TOKEN_PREFIX = "Bearer "
@@ -175,4 +174,4 @@ async def aget_google_id_token() -> str:
175174
if new_id_token:
176175
return BEARER_TOKEN_PREFIX + new_id_token
177176
else:
178-
raise Exception("Failed to fetch async Google ID token.")
177+
raise Exception("Failed to fetch async Google ID token.")

0 commit comments

Comments
 (0)