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)