Код: Выделить всё
async def callback(update: Update, context: ContextTypes.DEFAULT_TYPE):
buttons = [
[InlineKeyboardButton(text="CONFIG", callback_data="CONFIG"), CANCEL_BUTTON]
]
keyboard = InlineKeyboardMarkup(buttons)
# remove normal markup
msg = await update.message.reply_text(text="Select an action", reply_markup=ReplyKeyboardRemove())
# add inline markup
await msg.edit_reply_markup(keyboard)
return SELECT_ACTION
Подробнее здесь: https://stackoverflow.com/questions/792 ... ng-a-new-m
Мобильная версия