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), )