From e02cffa43a66fde61bd4a15068f92bf05b09c058 Mon Sep 17 00:00:00 2001 From: Daniel Perna Date: Sun, 15 Jan 2017 20:43:40 +0100 Subject: [PATCH] Fixed wrong syntax (#1781) --- source/_ecosystem/appdaemon/api.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_ecosystem/appdaemon/api.markdown b/source/_ecosystem/appdaemon/api.markdown index 8615d751248..af1b241f1ec 100755 --- a/source/_ecosystem/appdaemon/api.markdown +++ b/source/_ecosystem/appdaemon/api.markdown @@ -1160,7 +1160,7 @@ Each service has different parameter requirements. This argument allows you to s #### {% linkable_title Examples %} ```python -self.call_service("light.turn_on", entity_id = "light/office_lamp", color_name = "red") +self.call_service("light/turn_on", entity_id = "light.office_lamp", color_name = "red") self.call_service("notify/notify", title = "Hello", message = "Hello World") ``` ### {% linkable_title turn_on() %}