`types.InlineQueryResultArticle(id=str(offset + index), title=shop.name,
description="({})\n{}".format(shop.name, shop.address),
input_message_content=types.InputTextMessageContent(
message_text="# {}\n {}\n Рейтинг - {}".format(
shop.name, shop.address, shop.get_rating(shop.id))),
reply_markup=shop_result_btns(shop)))`
发送完answer_inline_query()后,我无法捕获InlineQueryResultArticle
在@bot.callback_query_handler(func=lambda call: True)
中来自reply_markup的回调。
也许有人可以告诉我该如何捕捉?