This commit is contained in:
Joscha 2019-04-06 17:17:43 +00:00
parent 23425090cc
commit f6f7cc5aa6
2 changed files with 12 additions and 13 deletions

View file

@ -1,3 +1,4 @@
[mypy]
disallow_untyped_defs = True
disallow_incomplete_defs = True
no_implicit_optional = True

View file

@ -1,21 +1,19 @@
from typing import List
__all__: List[str] = []
from .client import *
__all__ += client.__all__
from .connection import *
from .events import *
from .exceptions import *
__all__ += client.__all__
from .message import *
__all__ += exceptions.__all__
from .room import *
__all__ += message.__all__
__all__ += room.__all__
from .user import *
__all__ += user.__all__
from .util import *
__all__: List[str] = []
__all__ += client.__all__
__all__ += connection.__all__
__all__ += events.__all__
__all__ += exceptions.__all__
__all__ += message.__all__
__all__ += room.__all__
__all__ += user.__all__