From df6f155a77e81de1ea835f521d23fbfd4b640ec2 Mon Sep 17 00:00:00 2001 From: Timur Nabiullin Date: Tue, 14 Feb 2023 20:54:18 +0300 Subject: [PATCH] add 2 new styles --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 49a4dd5..228f85c 100644 --- a/main.py +++ b/main.py @@ -31,7 +31,9 @@ async def execute_action(message: Message): short = InlineKeyboardButton(text="Короткие истории", callback_data='6') wiki = InlineKeyboardButton(text="Короче, Википедия", callback_data='8') film = InlineKeyboardButton(text="Синопсисы к фильму", callback_data='9') - view.add(nonestyle, howto, recipe, narod, short, wiki, film) + sport = InlineKeyboardButton(text="Балабоба и sports.ru", callback_data='34') + love = InlineKeyboardButton(text="Песни о любви", callback_data="37") + view.add(nonestyle, howto, recipe, narod, short, wiki, film, sport, love) global text text = message.text await message.reply("Выберите категорию генерации", reply_markup=view)