Skip to content

Commit

Permalink
Fix start_menu priority
Browse files Browse the repository at this point in the history
Signed-off-by: alfred richardsn <rchrdsn@protonmail.ch>
  • Loading branch information
r4rdsn committed Nov 14, 2019
1 parent a8aa270 commit 2c3b305
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/handlers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,16 @@
from src.bot import dp
from src.bot import tg
from src.config import EXCEPTIONS_CHAT_ID
from src.handlers import creation
from src.handlers import escrow
from src.handlers import language
from src.handlers import order
from src.handlers import start_menu
from src.handlers import support
from src.handlers import start_menu # noqa: F401, noreorder
from src.handlers import creation # noqa: F401
from src.handlers import escrow # noqa: F401
from src.handlers import language # noqa: F401
from src.handlers import order # noqa: F401
from src.handlers import support # noqa: F401
from src.handlers.base import private_handler
from src.handlers.base import start_keyboard
from src.i18n import _

__all__ = ["creation", "escrow", "language", "order", "start_menu", "support"]

log = logging.getLogger(__name__)


Expand Down

0 comments on commit 2c3b305

Please sign in to comment.