Хочу чтобы в определенное время бот отправлял сообщение. Но он выдает ошибку когда подходит заданное время
import telebot
from telebot import types
import schedule
import time
API_TOKEN = ''
bot = telebot.TeleBot(API_TOKEN)
@bot.message_handler(content_types=["text"])
def job(message):
bot.send_message(message.chat.id, 'привет')
schedule.every().day.at("20:25").do(job)
while True:
schedule.run_pending()
time.sleep(1)