Update for mypy.

This commit is contained in:
Chris Jerdonek 2017-09-04 14:10:00 -07:00
parent 3498b19a8b
commit 6a0d3aa66e
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ class VersionControl(object):
# List of supported schemes for this Version Control
schemes = () # type: Tuple[str, ...]
# Iterable of environment variable names to pass to call_subprocess().
unset_environ = ()
unset_environ = () # type: Tuple[str, ...]
default_arg_rev = None # type: Optional[str]
def __init__(self, url=None, *args, **kwargs):