Help finding erroneous Template Condition

I’m finding these errors in my logfile:

2023-07-06 07:18:14.423 WARNING (MainThread) [homeassistant.helpers.script] Error in 'choose[0]' evaluation: In 'template' condition: TypeError: unsupported operand type(s) for +: 'int' and 'str'
2023-07-06 07:18:14.423 WARNING (MainThread) [homeassistant.helpers.script] Error in 'choose[0]' evaluation: In 'template' condition: TypeError: unsupported operand type(s) for +: 'int' and 'str'

How do I figure out which Templates are causing the problem?

Start by looking at your scripts containing a choose.

choose[0] means it’s the first conditions option. It contains a template that’s attempting to add an integer value and a string value.

Thanks, I did find a Choose without any conditions. I’m guessing that may have been it.