Skip to content

Drop a useless import in favor of explicitness #7117

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 30, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/pip/_internal/req/req_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
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 (
Expand Down Expand Up @@ -451,7 +450,7 @@ def move_wheel_files(
pycompile=True # type: bool
):
# type: (...) -> None
move_wheel_files(
wheel.move_wheel_files(
self.name, self.req, wheeldir,
user=use_user_site,
home=home,
Expand Down