def send_settings_emotion_message_callback(bot: telegram.Bot, emotion: bot_types.Emotion,
callback_query_id: str, quiet: bool):
if quiet:
bot.answer_callback_query(
callback_query_id=callback_query_id
)
else:
bot.answer_callback_query(
callback_query_id=callback_query_id,
text=strings.NEW_EMOTION_MESSAGE % str(emotion)
)
# endregion
# region settings mode
评论列表
文章目录