Как добавить одноразовое нажатие к кнопкам
@bot.message_handler(content_types=['text'])
def start(message):
global etiraf
etiraf = message.text.lower()
markup = types.InlineKeyboardMarkup()
button1 = types.InlineKeyboardButton(text="Yes", callback_data="Yes")
button2 = types.InlineKeyboardButton(text="No", callback_data="No")
markup.add(button1, button2)
bot.send_message(chat_id=message.chat.id, text="Anonim?", reply_markup=markup)