@bot.message_handler(commands=['start'])
def welcome(message):
bot.send_message(message.chat.id, ...)
j.run_once(callback_1, 10)
def callback_1(context): #На context: telegram.ext.CallbackContext компилятор ругается
context.bot.send_message(chat_user_id, text='...')
from telegram.ext import Updater, CallbackContext
u = Updater(config.TOKEN, use_context=True)
j = u.job_queue
@bot.message_handler(commands=['start'])
def welcome(message):
bot.send_message(message.chat.id, '...')
j.run_once(callback_1, 10, context=message.chat.id)
def callback_1(context: CallbackContext):
context.bot.send_message(chat_id=context.job.context, text='...')