как вызвать функцию def ___(message) и нужно ли в этом случае это делать. Вот часть моего кода с таким примером.
@bot.message_handler(func=lambda messsage: messsage.text.lower() == '/start' or '\U00002705выбрать игру\U00002705')
def choose_game_or_start(message):
if(message.text == st.ANSW_START):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
button1 = types.KeyboardButton(st.GAME_DIGIT)
button2 = types.KeyboardButton(st.GAME_KNB)
button3 = types.KeyboardButton(st.ANSW_MENU)
button4 = types.KeyboardButton(st.GAME_O_OR_R)
markup.add(button1, button2, button4, button3)
bot.send_message(message.chat.id, text=st.CHOOSE_GAME, reply_markup=markup)
if (message.text == '/start'):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
btn1 = types.KeyboardButton(st.ANSW_START)
btn2 = types.KeyboardButton(st.ANSW_HELP)
markup.add(btn1, btn2)
bot.send_message(message.chat.id, text=st.ANSW_HIFROM_BOT, reply_markup=markup)
return