diff --git a/main.py b/main.py index b7449a9..bd4bf3e 100644 --- a/main.py +++ b/main.py @@ -90,7 +90,7 @@ async def clear(message: types.Message): await message.answer(text="Список очищен") -@dp.message_handler(content_types='text', text="Парсер рюкзака") +@dp.message_handler(content_types='text', text=["Парсер рюкзака", "Поиск рюкзака"]) async def backpack(message: types.Message): await message.answer(text='Выберите цвет', reply_markup=colors_markup) ans = await message.answer(text=f'Цвет: \nТип: \nОбъем ОТ: \nОбъем ДО: \nЦена: ') diff --git a/markups.py b/markups.py index 7d0b82a..21696b4 100644 --- a/markups.py +++ b/markups.py @@ -9,7 +9,7 @@ def reply_keyboard(): - button = types.KeyboardButton(text='Парсер рюкзака') + button = types.KeyboardButton(text='Поиск рюкзака') like_button = types.KeyboardButton(text='Список желаний') markup = types.ReplyKeyboardMarkup(resize_keyboard=True) markup.add(button)