mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
Allow skip parsing template result (#42401)
This commit is contained in:
@@ -461,7 +461,10 @@ def async_template(
|
||||
if isinstance(value, bool):
|
||||
return value
|
||||
|
||||
return str(value).lower() == "true"
|
||||
if isinstance(value, str):
|
||||
return value.lower() == "true"
|
||||
|
||||
return False
|
||||
|
||||
|
||||
def async_template_from_config(
|
||||
|
||||
Reference in New Issue
Block a user