Skip to content

Commit fb84373

Browse files
committed
avoid circular dependency
1 parent 64f7be8 commit fb84373

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

google/auth/credentials.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,22 @@
1717

1818
import abc
1919
from enum import Enum
20+
import logging
2021
import os
2122
from typing import List
2223

2324
from google.auth import _helpers, environment_vars
2425
from google.auth import exceptions
2526
from google.auth import metrics
2627
from google.auth._credentials_base import _BaseCredentials
27-
from google.auth._default import _LOGGER
2828
from google.auth._refresh_worker import RefreshThreadManager
2929

3030
DEFAULT_UNIVERSE_DOMAIN = "googleapis.com"
3131
NO_OP_TRUST_BOUNDARY_LOCATIONS: List[str] = []
3232
NO_OP_TRUST_BOUNDARY_ENCODED_LOCATIONS = "0x0"
3333

34+
_LOGGER = logging.getLogger("google.auth._default")
35+
3436

3537
class Credentials(_BaseCredentials):
3638
"""Base class for all credentials.

0 commit comments

Comments
 (0)