Skip to content

Commit

Permalink
Fix message formatting in start handler
Browse files Browse the repository at this point in the history
  • Loading branch information
rabilrbl committed Dec 20, 2023
1 parent 0ad4358 commit d4ad308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gemini_pro_bot/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
)

Expand Down

0 comments on commit d4ad308

Please sign in to comment.