Cannot track down source of Template Error

I get the following warning every minute, but cannot for the life of me trace the origin. I have no idea where this is coming from as have no devices/entities of that name in any helper, configuration.yaml, etc. Any thoughts on where/how I can find the source of this? Would really like to try clean this up somehow.

Logger: homeassistant.helpers.template
Source: helpers/template.py:2742
First occurred: 12:17:21 PM (229 occurrences)
Last logged: 4:04:00 PM

Template variable warning: No first item, sequence was empty. when rendering '{{ state_attr('weather.forecast_blake_home','forecast') | selectattr('datetime', 'search', now().timestamp() | timestamp_custom('%Y-%m-%d')) | map(attribute='condition') | first }}'

It is a template helper you defined that tries to use a weather forecast attribute that has been deprecated for quite a while now. It is trying to get a weather condition.

1 Like

@Edwin_D - thanks. For some reason I missed checking one of the helpers that had exactly this entry. Have corrected and problem gone. Thanks for the help

1 Like