fix yaml for input_number use in delay (#14147)

This commit is contained in:
Rafi Wiener 2020-08-04 00:48:54 +03:00 committed by GitHub
parent 9d0ee2c496
commit 6b64bd200f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -242,7 +242,7 @@ automation:
entity_id: switch.something
to: 'on'
action:
- delay: '00:{{ states('input_number.minutes') | int }}:{{ states('input_number.seconds') | int }}'
- delay: "00:{{ states('input_number.minutes') | int }}:{{ states('input_number.seconds') | int }}"
- service: switch.turn_off
entity_id: switch.something
```