From 352e4f1adae2646828662deda120c38a7c3f351d Mon Sep 17 00:00:00 2001 From: Tony Stork Date: Wed, 5 Mar 2025 17:08:20 -0500 Subject: [PATCH] Update weather report jinja template --- custom_templates/weather.jinja | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/custom_templates/weather.jinja b/custom_templates/weather.jinja index 8707ca8..35ca57b 100644 --- a/custom_templates/weather.jinja +++ b/custom_templates/weather.jinja @@ -101,7 +101,10 @@ {% macro weatherReport(type,method,time) %} {% macro data() %} - {{ weatherInfo(type,method,time) | replace('clear-night','clear') | replace('partlycloudy','partly cloudy') }} + {{ weatherInfo(type,method,time) | + replace('clear-night','clear') | + replace('partlycloudy','partly cloudy') | + replace('snowy-rainy','a mix of rain and snow') }} {% endmacro %} {{ cleanup(data()) }} {% endmacro %}