Been stumbling my way through modifying the darksky weather component to show a daily forecast instead of a hourly forecast, as well as some additional points that would be useful. However, one that doesn’t seem to be working is apparentTemperature. It is defined in the same manner as some of the additional points that I have added. I should note that I am expecting to see it as an attribute, not necessarily on the card itself.
Wondered if anyone had run into this?
@property
def condition(self):
"""Return the weather condition."""
return self._ds_currently.get('summary')
@property
def icon(self):
"""Return the weather icon."""
return self._ds_currently.get('icon')
@property
def apparent_temperature(self):
"""Return the apparent temperature (Feels like)."""
return self._ds_currently.get('apparentTemperature')
@property
def visibility(self):
"""Return the visibility."""
return self._ds_currently.get('visibility')