Fixed keep_light_on variable

This commit is contained in:
jeells102
2025-03-24 10:56:40 +00:00
committed by GitHub
parent 5f8aaaaea2
commit 5c0b8a3089

View File

@ -129,7 +129,7 @@ sequence:
- condition: template
value_template: "{{ is_state(target_light, 'on') }}"
- condition: template
value_template: "{{ not is_input('keep_light_on') }}"
value_template: "{{ not keep_light_on }}"
then:
- delay:
minutes: "{{ light_timeout | int }}"