From 8610dd3eb57735be96ae2e8400ef798139d5ecb6 Mon Sep 17 00:00:00 2001 From: Gerard Date: Fri, 15 Feb 2019 09:02:26 +0100 Subject: [PATCH] Updates for call_service (#8586) Made some minor updates in the call_service part is it was showing a wrong example. --- source/_docs/ecosystem/appdaemon/api.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_docs/ecosystem/appdaemon/api.markdown b/source/_docs/ecosystem/appdaemon/api.markdown index 09fcfd6781b..6346fd933d4 100755 --- a/source/_docs/ecosystem/appdaemon/api.markdown +++ b/source/_docs/ecosystem/appdaemon/api.markdown @@ -1139,7 +1139,7 @@ Call service is the basic way of calling a service within AppDaemon. It can call #### {% linkable_title Synopsis %} ```python -self.call_service(self, service, **kwargs) +self.call_service(service, **kwargs) ``` #### {% linkable_title Returns %} @@ -1150,7 +1150,7 @@ None ##### {% linkable_title service %} -The service name, e.g., `light.turn_on`. +The service name, e.g., `light/turn_on`. ##### {% linkable_title \*\*kwargs %}