I’m developing a Telegram bot and encountered a problem with HTML formatting when sending messages. When I try to send a bold message, the program fails with an error similar to the one below:
bot_instance.deliver_message(user_context.session_id, "<b>Your Balance:</b>", display_mode=telegram_client.Markup.HTML)
The error reads: AttributeError: module ‘telegram_client’ has no attribute ‘Markup’. I am wondering if there is an extra dependency that needs to be installed beyond the common libraries like pyTeleBot, python-decouple, and telegram-client. Any insights or suggestions would be greatly appreciated.