import telebot
bot = telebot.TeleBot('тут токен')
@bot.message_handlers(commands=['start'])
def main(message):
bot.send_message(message.chat.id, 'привет!')
Traceback (most recent call last):
File "c:\Users\Win10_Game_OS\Desktop\прграмирование\bot.py", line 5, in <module>
@bot.message_handlers(commands=['start'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: 'list' object is not callable