Skip to content

Commit c275e9d

Browse files
pradyunsgxavfernandez
authored andcommitted
Drop a useless import in favor of explicitness
1 parent 3732e79 commit c275e9d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pip/_internal/req/req_install.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
from pip._internal.utils.ui import open_spinner
3838
from pip._internal.utils.virtualenv import running_under_virtualenv
3939
from pip._internal.vcs import vcs
40-
from pip._internal.wheel import move_wheel_files
4140

4241
if MYPY_CHECK_RUNNING:
4342
from typing import (
@@ -451,7 +450,7 @@ def move_wheel_files(
451450
pycompile=True # type: bool
452451
):
453452
# type: (...) -> None
454-
move_wheel_files(
453+
wheel.move_wheel_files(
455454
self.name, self.req, wheeldir,
456455
user=use_user_site,
457456
home=home,

0 commit comments

Comments
 (0)