Significantly clean-up imports

Sure wish I would've automated this.
This commit is contained in:
Lonami Exo
2023-09-02 23:05:28 +02:00
parent f75acee7e8
commit 4b2d252fe1
52 changed files with 447 additions and 231 deletions

View File

@@ -1,4 +1,14 @@
from . import abcs, core, functions, mtproto, types
from . import abcs, functions, mtproto, types
from .core import Request
from .layer import LAYER, TYPE_MAPPING
__all__ = ["abcs", "core", "functions", "mtproto", "types", "LAYER", "TYPE_MAPPING"]
__all__ = [
"abcs",
"core",
"functions",
"mtproto",
"types",
"Request",
"LAYER",
"TYPE_MAPPING",
]