Skip to content

Commit eef11dc

Browse files
committed
chore: fix import order in __init__.py to satisfy flake8
1 parent 24ac419 commit eef11dc

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,16 @@
2424
for the return value of :class:`Request`.
2525
"""
2626

27+
import abc
28+
import http.client as http_client
29+
from typing import Set
30+
2731
# PEP 0810: Explicit Lazy Imports
2832
# Python 3.15+ natively intercepts and defers these imports.
2933
# Developers can disable this behavior and force eager imports.
3034
# For more information, see:
3135
# https://docs.python.org/3.15/library/sys.html#sys.set_lazy_imports_filter
3236
# Older Python versions safely ignore this variable.
33-
from typing import Set
34-
3537
__lazy_modules__: Set[str] = {
3638
"_aiohttp_requests",
3739
"_custom_tls_signer",
@@ -44,9 +46,6 @@
4446
"urllib3",
4547
}
4648

47-
import abc
48-
import http.client as http_client
49-
5049
DEFAULT_RETRYABLE_STATUS_CODES = (
5150
http_client.INTERNAL_SERVER_ERROR,
5251
http_client.SERVICE_UNAVAILABLE,

0 commit comments

Comments
 (0)