We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f8770 commit abaed80Copy full SHA for abaed80
1 file changed
packages/google-auth/google/auth/transport/__init__.py
@@ -31,7 +31,7 @@
31
# https://docs.python.org/3.15/library/sys.html#sys.set_lazy_imports_filter
32
# Older Python versions safely ignore this variable.
33
__lazy_modules__ = {
34
- "aiohttp_requests",
+ "_aiohttp_requests",
35
"_custom_tls_signer",
36
"_http_client",
37
"_mtls_helper",
@@ -45,7 +45,6 @@
45
import abc
46
import http.client as http_client
47
48
-
49
DEFAULT_RETRYABLE_STATUS_CODES = (
50
http_client.INTERNAL_SERVER_ERROR,
51
http_client.SERVICE_UNAVAILABLE,
@@ -124,7 +123,7 @@ def __call__(
124
123
125
126
try:
127
- from google.auth.transport import aiohttp_requests # noqa: F401, E402
+ from google.auth.transport import _aiohttp_requests # noqa: F401, E402
128
except ImportError:
129
pass
130
0 commit comments