关于pyTelegramBotAPI的问题,如何解决?

**大佬们这是咋回事啊
我用的 pyTelegramBotAPI库
**
import telebot

bot = telebot.TeleBot("5625600998:AAGt1WKxFpS6MDtM7Nd3fRuz7idESiTpKQY")

@bot.message_handler(commands=['start', 'help'])
def send_welcome(message):
    bot.reply_to(message, "Howdy, how are you doing?")

@bot.message_handler(func=lambda message: True)
def echo_all(message):
    bot.reply_to(message, message.text)

bot.infinity_polling()

img