у меня есть такой код
import telebot
import config
bot = telebot.TeleBot(config.TOKEN)
bot.message_handler(content_types=['text'])
def lapochka(message):
bot.send_message(message.chat.id, message.text)
bot.polling(none_stop=True)
Консоль пишет такую ошибку:
C:\Users\Admin\Desktop\Bots>cd C:\Users\Admin\Desktop\Bots\TelegramBot
C:\Users\Admin\Desktop\Bots\TelegramBot>python bot.py
File "C:\Users\Admin\Desktop\Bots\TelegramBot\bot.py", line 7
def async(message):
^
SyntaxError: invalid syntax
Как решить??