Здравствуйте, не могу понять ошибку, несколько часов ломаю голову. Что здесь неправильно?
from pyowm import OWM
import telebot
bot = telebot.TeleBot(“5156765212:AAHj2Z6TN8PGl1SRocgtSYd62sesRljskX4”)
owm = OWM('1cc74e837a2d5692d618f7f1226b3da6')
mgr = owm.weather_manager()
@bot.message_handler(content_types
def send_echo(message):
observation = mgr.weather_at_place(message.text)
w = observation.weather
answer = w.detailed_status, w.temperature('celsius')
bot.send_message(message.chat.id, answer)
bot.polling( none_stop = True)