Skip to content

Commit

Permalink
fix: add forecast to weather entity #6
Browse files Browse the repository at this point in the history
  • Loading branch information
chilikla authored Nov 27, 2024
1 parent 0859ba4 commit a0f877b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion custom_components/yerushamayim/weather.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,6 @@ async def async_forecast_daily(self) -> list[Forecast] | None:
_LOGGER.debug("Yerushamayim forecast: %s", forecast)
return forecast

except Exception:
except Exception as err:
_LOGGER.debug("Yerushamayim forecast error: %s", err)
return None

0 comments on commit a0f877b

Please sign in to comment.