Я пытаюсь построить помощника, используя python. И это продолжает показывать ошибку
"location.condition не может быть вызвано Pylint (не вызывается)" & "location.forecast не является вызываемым Pylint (не вызывается)"
elif 'current weather in' in command:
reg_ex = re.search('current weather in (.*)', command)
if reg_ex:
city = reg_ex.group(1)
weather = Weather(unit=Unit.CELSIUS)
location = weather.lookup_by_location(city)
condition = location.condition()
TalkToMe('The Current weather in %s is %s.'
'The tempeture is %d.1 C degree' %(city, condition.text(),
(int(condition.temp))))
elif 'weather forecast in' in command:
reg_ex = re.search('weather forecast in (.*)', command)
if reg_ex:
city = reg_ex.group(1)
weather = Weather()
location = weather.lookup_by_location(city)
forecasts = location.forecast()
for i in range(0,3):
TalkToMe("On %s will it %s."
'The maximum temperture will be %d.1 C degree.'
'The lowest temperature will be %d.1 C degrees.' % (forecasts[i].date(), forecasts[i].text(), (int(forecasts[i].high)), (int(forecasts[i].low))))
Должно указывать погодные условия или прогноз погоды