Skip to content

Commit 5046a51

Browse files
committed
fix imports to be sorted
1 parent b147505 commit 5046a51

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

httpx/_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
TimeoutTypes,
4747
)
4848
from ._urls import URL, QueryParams
49-
from ._utils import URLPattern, get_environment_proxies, build_url_pattern
49+
from ._utils import URLPattern, build_url_pattern, get_environment_proxies
5050

5151
if typing.TYPE_CHECKING:
5252
import ssl # pragma: no cover

httpx/_utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
import os
55
import re
66
import typing
7-
from urllib.request import getproxies
8-
97
from abc import abstractmethod
8+
from urllib.request import getproxies
109

1110
from ._types import PrimitiveData
1211

0 commit comments

Comments
 (0)