Skip to content

Commit 35e8bdc

Browse files
committed
fix: remaining flake8 errors in urllib3.py
1 parent 3eb6523 commit 35e8bdc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • packages/google-auth/google/auth/transport

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
import http.client as http_client
2121
import logging
22-
import warnings
2322
from typing import Set
23+
import warnings
2424

2525
# Certifi is Mozilla's certificate bundle. Urllib3 needs a certificate bundle
2626
# to verify HTTPS requests, and certifi is the recommended and most reliable
@@ -56,6 +56,7 @@
5656
from google.auth import exceptions
5757
from google.auth import transport
5858
from google.auth.transport import _mtls_helper
59+
from google.oauth2 import service_account
5960

6061
__lazy_modules__: Set[str] = {
6162
"urllib3",
@@ -64,7 +65,6 @@
6465
"packaging",
6566
"packaging.version",
6667
}
67-
from google.oauth2 import service_account
6868

6969
if version.parse(urllib3.__version__) >= version.parse("2.0.0"): # pragma: NO COVER
7070
RequestMethods = urllib3._request_methods.RequestMethods # type: ignore

0 commit comments

Comments
 (0)