Skip to content

Commit

Permalink
isort all imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Sep 2, 2017
1 parent 93d9f20 commit e2b2f70
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pip/_internal/basecommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
)
from pip._internal.index import PackageFinder
from pip._internal.locations import running_under_virtualenv
from pip._internal.req.req_install import InstallRequirement
from pip._internal.req.req_file import parse_requirements
from pip._internal.req.req_install import InstallRequirement
from pip._internal.status_codes import (
ERROR, PREVIOUS_BUILD_DIR_ERROR, SUCCESS, UNKNOWN_ERROR,
VIRTUALENV_NOT_FOUND
Expand Down
2 changes: 1 addition & 1 deletion src/pip/_internal/cmdoptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
from pip._internal.locations import USER_CACHE_DIR, src_prefix
from pip._internal.models import PyPI
from pip._internal.utils.hashes import STRONG_HASHES
from pip._internal.utils.ui import BAR_TYPES
from pip._internal.utils.typing import MYPY_CHECK_RUNNING
from pip._internal.utils.ui import BAR_TYPES

if MYPY_CHECK_RUNNING:
from typing import Any
Expand Down
1 change: 0 additions & 1 deletion src/pip/_internal/locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
from pip._internal.compat import WINDOWS, expanduser
from pip._internal.utils import appdirs


# Application Directories
USER_CACHE_DIR = appdirs.user_cache_dir("pip")

Expand Down
1 change: 1 addition & 0 deletions src/pip/_internal/utils/deprecation.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import logging
import warnings

from pip._internal.utils.typing import MYPY_CHECK_RUNNING

if MYPY_CHECK_RUNNING:
Expand Down

0 comments on commit e2b2f70

Please sign in to comment.