Update scripts.markdown (#14247)

VS Code give an incorrect type error that it expects a boolean using the example.
This commit is contained in:
eracknaphobia 2020-08-15 05:23:34 -04:00 committed by GitHub
parent 2194975b83
commit 9815a06985
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,7 @@ You can also get the script to abort after the timeout by using optional `contin
# Wait until a valve is < 10 or abort after 1 minute.
- wait_template: "{{ state_attr('climate.kitchen', 'valve')|int < 10 }}"
timeout: '00:01:00'
continue_on_timeout: 'false'
continue_on_timeout: false
```
{% endraw %}