sorted imports

This commit is contained in:
StNicolay 2022-12-29 18:22:37 +03:00
parent 5bec51beb2
commit 77be64ed4b
2 changed files with 3 additions and 2 deletions

View File

@ -3,9 +3,9 @@ import functools
from sqlalchemy.future import Engine
from telebot.async_telebot import AsyncTeleBot
from . import message_handlers, callback_handlers
from . import callback_handlers, message_handlers
__all__ = ["message_handlers"]
__all__ = ["callback_handlers", "message_handlers"]
def create_bot(token: str, engine: Engine) -> AsyncTeleBot:

View File

@ -3,6 +3,7 @@ from typing import Any, Awaitable, Callable
import telebot
from telebot.async_telebot import AsyncTeleBot
from . import markups
Message = telebot.types.Message