From e0c76fcb22d6d59cbbbce835234a606073dcd93e Mon Sep 17 00:00:00 2001 From: chilikla Date: Sun, 24 Nov 2024 23:07:31 +0200 Subject: [PATCH] fix: rain and wind dicts #2 --- custom_components/yerushamayim/data_coordinator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/yerushamayim/data_coordinator.py b/custom_components/yerushamayim/data_coordinator.py index 118e2e7..9c232e0 100644 --- a/custom_components/yerushamayim/data_coordinator.py +++ b/custom_components/yerushamayim/data_coordinator.py @@ -213,7 +213,7 @@ def _extract_data(self) -> YerushamayimData: temperature=temp_data, humidity=humidity_data, status=status_data, - forecast=forecast_data - rain=rain_data + forecast=forecast_data, + rain=rain_data, wind=wind_data ) \ No newline at end of file