Skip to content

Commit bfc403f

Browse files
committed
fix: use hardcoded module names instead of __name__
1 parent e646bcd commit bfc403f

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
@@ -25,15 +25,15 @@
2525
"""
2626

2727
__lazy_modules__ = {
28-
f"{__name__}._aiohttp_requests",
29-
f"{__name__}._custom_tls_signer",
30-
f"{__name__}._http_client",
31-
f"{__name__}._mtls_helper",
32-
f"{__name__}._requests_base",
33-
f"{__name__}.grpc",
34-
f"{__name__}.mtls",
35-
f"{__name__}.requests",
36-
f"{__name__}.urllib3",
28+
"google.auth.transport._aiohttp_requests",
29+
"google.auth.transport._custom_tls_signer",
30+
"google.auth.transport._http_client",
31+
"google.auth.transport._mtls_helper",
32+
"google.auth.transport._requests_base",
33+
"google.auth.transport.grpc",
34+
"google.auth.transport.mtls",
35+
"google.auth.transport.requests",
36+
"google.auth.transport.urllib3",
3737
}
3838

3939
import abc

0 commit comments

Comments
 (0)