import telebot
from telebot import types
token="......"
bot=telebot.TeleBot(token)
@bot.message_handler(commands=['start'])
def start(message):
markup_Inline = types.InlineKeyboardMarkup(row_width=2) # Активация клавиатуры
Inline_B3 = types.InlineKeyboardButton(text="?Пропустить", callback_data="CONTINUE")
.....
@bot.callback_query_handler(func=lambda call: True)
def callback_inline(call):
try:
if call.message:
if call.data == "CONTINUE":
start() # это не помогло. start(message) это тоже
except Exception as e:
print(repr(e))