Skip to content

Commit 3de04f5

Browse files
committed
fix: add type hint to __lazy_modules__
1 parent abaed80 commit 3de04f5

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@
3030
# For more information, see:
3131
# https://docs.python.org/3.15/library/sys.html#sys.set_lazy_imports_filter
3232
# Older Python versions safely ignore this variable.
33-
__lazy_modules__ = {
33+
from typing import Set
34+
35+
__lazy_modules__: Set[str] = {
3436
"_aiohttp_requests",
3537
"_custom_tls_signer",
3638
"_http_client",

0 commit comments

Comments
 (0)