From 9815a0698536bfe36e4efec41addc4bb49cdab7b Mon Sep 17 00:00:00 2001 From: eracknaphobia Date: Sat, 15 Aug 2020 05:23:34 -0400 Subject: [PATCH] Update scripts.markdown (#14247) VS Code give an incorrect type error that it expects a boolean using the example. --- source/_docs/scripts.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/scripts.markdown b/source/_docs/scripts.markdown index bf1bc4a0de6..3093f6fd354 100644 --- a/source/_docs/scripts.markdown +++ b/source/_docs/scripts.markdown @@ -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 %}