From d4ad30880324674ebeea245a57e9aaa85be46ac7 Mon Sep 17 00:00:00 2001 From: Mohammed Rabil Date: Wed, 20 Dec 2023 12:34:10 +0530 Subject: [PATCH] Fix message formatting in start handler --- gemini_pro_bot/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gemini_pro_bot/handlers.py b/gemini_pro_bot/handlers.py index 9bfbd2e..b8e1a3e 100644 --- a/gemini_pro_bot/handlers.py +++ b/gemini_pro_bot/handlers.py @@ -25,7 +25,7 @@ async def start(update: Update, _: ContextTypes.DEFAULT_TYPE) -> None: """Send a message when the command /start is issued.""" user = update.effective_user await update.message.reply_html( - rf"Hi {user.mention_html()}!\n\nStart sending messages with me to generate a response.\n\nSend /new to start a new chat session.", + f"Hi {user.mention_html()}!\n\nStart sending messages with me to generate a response.\n\nSend /new to start a new chat session.", # reply_markup=ForceReply(selective=True), )