Skip to content

Commit abaed80

Browse files
committed
fix: typo aiohttp_requests to _aiohttp_requests
1 parent e1f8770 commit abaed80

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

packages/google-auth/google/auth/transport/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# https://docs.python.org/3.15/library/sys.html#sys.set_lazy_imports_filter
3232
# Older Python versions safely ignore this variable.
3333
__lazy_modules__ = {
34-
"aiohttp_requests",
34+
"_aiohttp_requests",
3535
"_custom_tls_signer",
3636
"_http_client",
3737
"_mtls_helper",
@@ -45,7 +45,6 @@
4545
import abc
4646
import http.client as http_client
4747

48-
4948
DEFAULT_RETRYABLE_STATUS_CODES = (
5049
http_client.INTERNAL_SERVER_ERROR,
5150
http_client.SERVICE_UNAVAILABLE,
@@ -124,7 +123,7 @@ def __call__(
124123

125124

126125
try:
127-
from google.auth.transport import aiohttp_requests # noqa: F401, E402
126+
from google.auth.transport import _aiohttp_requests # noqa: F401, E402
128127
except ImportError:
129128
pass
130129

0 commit comments

Comments
 (0)