Update weather report jinja template

This commit is contained in:
2025-03-05 17:08:20 -05:00
parent 09d82abdb1
commit 352e4f1ada

View File

@ -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 %}