From 988a45e235225587593cb1e2f4caad04f2f16612 Mon Sep 17 00:00:00 2001 From: Pavel_Duron Date: Tue, 18 Oct 2022 20:33:50 +1000 Subject: [PATCH] =?UTF-8?q?=D1=84=D1=8D=D1=81=D1=8B=D0=B2=D1=8D=D1=8B?= =?UTF-8?q?=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 28f17d7..ea80357 100644 --- a/bot.py +++ b/bot.py @@ -15,7 +15,7 @@ dp = Dispatcher(bot) @dp.message_handler(commands=['start', 'help']) async def send_welcome(message: types.Message): - kb = [types.KeyboardButton(text="Пошел на хуй"), types.KeyboardButton(text="Нет, ты!")] + kb = [types.KeyboardButton("Пошел на хуй"), types.KeyboardButton("Нет, ты!")] keyboard = types.ReplyKeyboardMarkup(keyboard=kb) await message.reply("Дарова", reply_markup=keyboard)