diff --git a/src/tg/handler_registry.py b/src/tg/handler_registry.py index dfd92a2..6a8955a 100644 --- a/src/tg/handler_registry.py +++ b/src/tg/handler_registry.py @@ -1,7 +1,7 @@ from dataclasses import dataclass from typing import Callable, Optional, Literal -from ...consts import CommandCategories +from ..consts import CommandCategories from . import handlers diff --git a/src/tg/handlers/__init__.py b/src/tg/handlers/__init__.py index 3ab3803..380b372 100644 --- a/src/tg/handlers/__init__.py +++ b/src/tg/handlers/__init__.py @@ -44,6 +44,6 @@ # Plain text message handler from .user_message_handler import ( handle_callback_query, - handle_new_members, handle_user_message, ) +from .flow_handlers import handle_new_members