mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 15:17:00 +01:00
Fix echobot.py Example (#2448)
This commit is contained in:
parent
43f5aeaff3
commit
7abacb000b
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ def start(update: Update, _: CallbackContext) -> None:
|
||||||
"""Send a message when the command /start is issued."""
|
"""Send a message when the command /start is issued."""
|
||||||
user = update.effective_user
|
user = update.effective_user
|
||||||
update.message.reply_markdown_v2(
|
update.message.reply_markdown_v2(
|
||||||
f'Hi {user.mention_markdown_v2()}!',
|
f'Hi {user.mention_markdown_v2()}\!',
|
||||||
reply_markup=ForceReply(selective=True),
|
reply_markup=ForceReply(selective=True),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue