markup.add(types.InlineKeyboardButton(text="текст",callback_data="data"))
self.BOT.send_message(chat_id=message.chat.id, text="", reply_markup=markup)
run = paragraph.add_run(block["text"])
# Get the XML tag
tag = run._r
# Create XML element
shd = OxmlElement('w:shd')
# Add attributes to the element
shd.set(qn('w:fill'), 'ebf2ef')
# This is the tricky part
run.font.size = Pt(10)
run.font.name = "Courier New"
run.element.xml
tag.rPr.append(shd)
Но почему же тогда программа отвечает, если callback не обработан?