Drop a useless import in favor of explicitness

This commit is contained in:
Pradyun Gedam 2018-11-30 07:07:44 +05:30 committed by Xavier Fernandez
parent 3732e791a5
commit c275e9d1ab
1 changed files with 1 additions and 2 deletions

View File

@ -37,7 +37,6 @@ from pip._internal.utils.typing import MYPY_CHECK_RUNNING
from pip._internal.utils.ui import open_spinner
from pip._internal.utils.virtualenv import running_under_virtualenv
from pip._internal.vcs import vcs
from pip._internal.wheel import move_wheel_files
if MYPY_CHECK_RUNNING:
from typing import (
@ -451,7 +450,7 @@ class InstallRequirement(object):
pycompile=True # type: bool
):
# type: (...) -> None
move_wheel_files(
wheel.move_wheel_files(
self.name, self.req, wheeldir,
user=use_user_site,
home=home,