Add missing '-> None' to all __init__ methods.

This commit is contained in:
Matthias Kramm
2015-11-09 10:25:08 -08:00
parent d2a3d4a4ed
commit 4fe8915d44
144 changed files with 580 additions and 580 deletions

View File

@@ -5,7 +5,7 @@
from typing import Any
class Version:
def __init__(self, vstring=None): ...
def __init__(self, vstring=None) -> None: ...
class StrictVersion(Version):
version_re = ... # type: Any
@@ -16,7 +16,7 @@ class StrictVersion(Version):
class LooseVersion(Version):
component_re = ... # type: Any
def __init__(self, vstring=None): ...
def __init__(self, vstring=None) -> None: ...
vstring = ... # type: Any
version = ... # type: Any
def parse(self, vstring): ...