import telebot from telebot import types bot = telebot.Telebot('7122621996:AAEykAjkbQrgu_oDakdBtPopdpxU4AdhmkY') @bot.message_handler(commands=['quiz']) def question(message): markup = types.InlineKeyboardMarkup(row_width=2) whatisescrow = types.InlineKeyboardButton('❓ WHAT IS ESCROW', callback_data = '1') instructions = types.InlineKeyboardButton('ℹ️ INSTRUCTIONS', callback_data = '2') terms = types.InlineKeyboardButton('📝TERMS', callback_data = '3') community = types.InlineKeyboardButton('📍 INSTRUCTIONS', callback_data = '4') markup.add(whatisescrow, instructions, terms, community) bot.send_messages(message.chat.id, 'This is just a test question:', reply_markup=markup) # @bot.callback_query_handler(func=lambda call:True) # def answer(callback):