Отключены лишние импорты

This commit is contained in:
sergey
2025-02-11 01:10:17 +07:00
parent 5ce39fb3bc
commit dd9d438082

View File

@@ -3,11 +3,11 @@ from aiogram.filters import Command
from aiogram.fsm.context import FSMContext from aiogram.fsm.context import FSMContext
from aiogram.utils import markdown from aiogram.utils import markdown
from BotLibrary import BotVariables
from email_validators import valid_email
from keyboards.reply_kb.survey_yesno_kb import get_survey_email_kb
from .states import Survey from .states import Survey
from BotLibrary import BotVariables, valid_email
from BotCode.keyboards.reply_kb.survey_yesno_kb import get_survey_email_kb
# Создание роутера
router = Router(name=__name__) router = Router(name=__name__)
@router.message(Command("survey", prefix=BotVariables.prefixs)) @router.message(Command("survey", prefix=BotVariables.prefixs))