shopbot/bot/validations/numbers.py

12 lines
407 B
Python
Raw Permalink Normal View History

2024-12-24 18:08:03 +00:00
from aiogram.types import Message
from aiogram_dialog import DialogManager
from aiogram_dialog.widgets.input import ManagedTextInput
async def error_number_handler(
message: Message,
widget: ManagedTextInput,
dialog_manager: DialogManager,
error: ValueError,
):
await message.answer(text="Вы ввели некорректное значение. Попробуйте ещё раз.")