can't open file 'dd.py': [Errno 2] No such file or directory
import telebot
import config
bot = telebot.Telebot(config.TOKEN)
@bot.message_handler(content_types=['text'])
def lalala(message):
bot.send_mesag(message.chat.id, message.text)
# RUN
bot.polling(none_stop=True)