Skip to content

Commit b64a067

Browse files
committed
Fix import ordering
1 parent 5600eea commit b64a067

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pip/_internal/index/collector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from pip._vendor.requests.exceptions import RetryError, SSLError
3535

3636
from pip._internal.exceptions import NetworkConnectionError
37-
from pip._internal.models.link import Link, SUPPORTED_HASHES
37+
from pip._internal.models.link import SUPPORTED_HASHES, Link
3838
from pip._internal.models.search_scope import SearchScope
3939
from pip._internal.network.session import PipSession
4040
from pip._internal.network.utils import raise_for_status

src/pip/_internal/models/link.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
TYPE_CHECKING,
99
Dict,
1010
List,
11+
Mapping,
1112
NamedTuple,
1213
Optional,
1314
Tuple,
1415
Union,
15-
Mapping,
1616
)
1717

1818
from pip._internal.utils.filetypes import WHEEL_EXTENSION

0 commit comments

Comments
 (0)