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

This commit is contained in:
Matthias Kramm
2015-11-09 10:25:11 -08:00
parent d2a3d4a4ed
commit 4fe8915d44
144 changed files with 580 additions and 580 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
from typing import Any
class _IOBase:
def __init__(self, *args, **kwargs): ...
def __init__(self, *args, **kwargs) -> None: ...
@property
def closed(self): ...
def close(self): ...