NO DISPATCHER IMPORT IN HANDLERS ANYMORE!

This commit is contained in:
latand 2021-04-25 23:42:14 +03:00
parent 2554b9aacc
commit aecdcb9b88
2 changed files with 7 additions and 9 deletions

View File

@ -1,4 +1,4 @@
from .errors import dp from . import errors
from .users import dp from . import users
from . import groups
__all__ = ["dp"] from . import channels

View File

@ -1,5 +1,3 @@
from .help import dp from . import help
from .start import dp from . import echo
from .echo import dp from . import start
__all__ = ["dp"]