Помогите с решением ошибки. Решил я ограничить доступ к боту телеграмм вот так:
import telebot
bot = telebot.TeleBot('мой ключ бота')
@bot.message_handler(commands=['start'])
def checkuserCommand(bot,update):
if update.message.from_user.id == "мой айди телеграмма":
if update.message.text == "/start":
def start_message(message):
bot.send_message(message.chat.id, 'Привет!')
bot.polling(none_stop=True, interval=0)
Но выдает ошибку:
2019-09-26 22:51:32,244 (util.py:65 WorkerThread1) ERROR - TeleBot: "TypeError occurred, args=("checkuserCommand() missing 1 required positional argument: 'update'",)