Skip to content

Commit e1f8770

Browse files
committed
fix: update __lazy_modules__ targets to match import statements
1 parent 39d4144 commit e1f8770

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
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-
"google.auth.transport.aiohttp_requests",
35-
"google.auth.transport._custom_tls_signer",
36-
"google.auth.transport._http_client",
37-
"google.auth.transport._mtls_helper",
38-
"google.auth.transport._requests_base",
39-
"google.auth.transport.grpc",
40-
"google.auth.transport.mtls",
41-
"google.auth.transport.requests",
42-
"google.auth.transport.urllib3",
34+
"aiohttp_requests",
35+
"_custom_tls_signer",
36+
"_http_client",
37+
"_mtls_helper",
38+
"_requests_base",
39+
"grpc",
40+
"mtls",
41+
"requests",
42+
"urllib3",
4343
}
4444

4545
import abc

0 commit comments

Comments
 (0)