File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
packages/toolbox-core/src/toolbox_core Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 2929
3030import time
3131from functools import partial
32- from typing import Optional , Dict , Any
32+ from typing import Any , Dict , Optional
3333
3434import google .auth
35- from google .auth ._credentials_async import Credentials
3635import jwt
36+ from google .auth ._credentials_async import Credentials
3737from google .auth ._default_async import default_async
3838from google .auth .transport import _aiohttp_requests
3939from google .auth .transport .requests import AuthorizedSession , Request
4040
41-
4241# --- Constants and Configuration ---
4342# Prefix for Authorization header tokens
4443BEARER_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." )
You can’t perform that action at this time.
0 commit comments