Skip to content

Commit

Permalink
fix: removed undesired condition (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
piyoki authored Dec 2, 2023
1 parent e2cd660 commit 396c498
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/component/repeat.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ def repeat(update: Update, context: CallbackContext):
repeated[chat_id] = True
t = t.replace("你", "我")
t = t.replace("机", "鹅")
t = t.replace("鸡", "鹅")
context.bot.send_message(chat_id=chat_id, text=t * 3)
# repeat 3 times with "!"
elif 1 <= len(update.message.text) <= 30 and (
Expand Down

0 comments on commit 396c498

Please sign in to comment.