Update skip_updates_example.py

This commit is contained in:
_run 2021-08-16 14:49:45 +04:00
parent 2c0f42b363
commit 3e7da0fd18
1 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,6 @@
import telebot
bot = telebot.TeleBot("TOKEN")
bot = telebot.TeleBot("TOKEN",skip_pending=True)# Skip pending skips old updates
@bot.message_handler(commands=['start', 'help'])
def send_welcome(message):
@ -10,6 +10,4 @@ def send_welcome(message):
def echo_all(message):
bot.reply_to(message, message.text)
bot.polling(skip_updates=True) # Will skip old messages when skip_updates is set
# Also, you can use skip_updates in infinity_polling()
bot.polling()