How to create a message with markup but without a text in telegram? – Telegram API
I have such replying keyboard: keyboard = [ [ InlineKeyboardButton("Play with a bot", callback_data=str(ONE)), InlineKeyboardButton("Results", callback_data=str(TWO)), ] ] reply_markup = InlineKeyboardMarkup(keyboard) update.message.reply_text(None, reply_markup=reply_markup) It gives me such a result: How can I get rid of the first "null" string?