Skip to content

Commit

Permalink
Merge pull request #5995 from pradyunsg/misc/cleanup-vcs
Browse files Browse the repository at this point in the history
Minor fixes in pip._internal.vcs directory
  • Loading branch information
pradyunsg committed Nov 9, 2018
2 parents fc1b1e4 + f60c57d commit a2d7150
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/pip/_internal/vcs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@

if MYPY_CHECK_RUNNING:
from typing import Dict, Optional, Tuple # noqa: F401
from pip._internal.cli.base_command import Command # noqa: F401

__all__ = ['vcs', 'get_src_requirement']
__all__ = ['vcs']


logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -87,7 +86,7 @@ def make_new(self, rev):


class VcsSupport(object):
_registry = {} # type: Dict[str, Command]
_registry = {} # type: Dict[str, VersionControl]
schemes = ['ssh', 'git', 'hg', 'bzr', 'sftp', 'svn']

def __init__(self):
Expand Down

0 comments on commit a2d7150

Please sign in to comment.