Skip to content

Commit 7ae442e

Browse files
committed
fix: address lint issue in requests.py import order
1 parent a1e2d61 commit 7ae442e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818

1919
import functools
2020
import http.client as http_client
21+
import importlib.util
2122
import logging
2223
import numbers
2324
import time
2425
from typing import Optional, Set
2526

26-
import importlib.util
2727

2828
if importlib.util.find_spec("requests") is None:
2929
raise ImportError(

0 commit comments

Comments
 (0)