8000 chore: change import path to import directly from module instead of p… · devevignesh/adk-python@4269cac · GitHub
[go: up one dir, main page]

Skip to content

Commit 4269cac

Browse files
seanzhougooglecopybara-github
authored andcommitted
chore: change import path to import directly from module instead of package
PiperOrigin-RevId: 767697759
1 parent c224626 commit 4269cac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/google/adk/tools/bigquery/bigquery_credentials.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
from pydantic import BaseModel
2828
from pydantic import model_validator
2929

30-
from ...auth import AuthConfig
31-
from ...auth import AuthCredential
32-
from ...auth import AuthCredentialTypes
33-
from ...auth import OAuth2Auth
30+
from ...auth.auth_credential import AuthCredential
31+
from ...auth.auth_credential import AuthCredentialTypes
32+
from ...auth.auth_credential import OAuth2Auth
33+
from ...auth.auth_tool import AuthConfig
3434
from ..tool_context import ToolContext
3535

3636
BIGQUERY_TOKEN_CACHE_KEY = "bigquery_token_cache"

0 commit comments

Comments
 (0)
0