def feedback_command(bot, update):
"""Defining the command to ask for user's feedback"""
keys = [['Lascia un messaggio agli sviluppatori'], ['Chiudi']]
bot.sendMessage(update.message.chat_id,
'Cosa desideri fare?',
reply_markup=telegram.ReplyKeyboardMarkup(
keys, one_time_keyboard=True))
return "send_feedback"
评论列表
文章目录