Clean up
This commit is contained in:
parent
23425090cc
commit
f6f7cc5aa6
2 changed files with 12 additions and 13 deletions
1
mypy.ini
1
mypy.ini
|
|
@ -1,3 +1,4 @@
|
||||||
[mypy]
|
[mypy]
|
||||||
disallow_untyped_defs = True
|
disallow_untyped_defs = True
|
||||||
disallow_incomplete_defs = True
|
disallow_incomplete_defs = True
|
||||||
|
no_implicit_optional = True
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,19 @@
|
||||||
from typing import List
|
from typing import List
|
||||||
|
|
||||||
__all__: List[str] = []
|
|
||||||
|
|
||||||
from .client import *
|
from .client import *
|
||||||
__all__ += client.__all__
|
from .connection import *
|
||||||
|
from .events import *
|
||||||
from .exceptions import *
|
from .exceptions import *
|
||||||
__all__ += client.__all__
|
|
||||||
|
|
||||||
from .message import *
|
from .message import *
|
||||||
__all__ += exceptions.__all__
|
|
||||||
|
|
||||||
from .room import *
|
from .room import *
|
||||||
__all__ += message.__all__
|
|
||||||
|
|
||||||
__all__ += room.__all__
|
|
||||||
from .user import *
|
from .user import *
|
||||||
|
|
||||||
__all__ += user.__all__
|
|
||||||
from .util import *
|
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__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue