diff --git a/homeassistant/components/nws/weather.py b/homeassistant/components/nws/weather.py index dee82d8c6cf..dcdef4f7b84 100644 --- a/homeassistant/components/nws/weather.py +++ b/homeassistant/components/nws/weather.py @@ -224,8 +224,8 @@ class NWSWeather(WeatherEntity): self.nws.station, status, ) - else: - self.observation = self.nws.observation + self.observation = self.nws.observation + _LOGGER.debug("Updating forecast") try: await self.nws.update_forecast() @@ -233,8 +233,7 @@ class NWSWeather(WeatherEntity): _LOGGER.error( "Error updating forecast from station %s: %s", self.nws.station, status ) - else: - self._forecast = self.nws.forecast + self._forecast = self.nws.forecast @property def attribution(self):