From 72449736f428ff30ab4d3d867a2c66a223b829e8 Mon Sep 17 00:00:00 2001 From: Lars Janssen Date: Tue, 23 Apr 2019 19:24:23 +0200 Subject: [PATCH] Clean up(count and tell):fix docstring --- action_server/src/action_server/actions/count_and_tell.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/action_server/src/action_server/actions/count_and_tell.py b/action_server/src/action_server/actions/count_and_tell.py index fd7d81dc..b282db7e 100644 --- a/action_server/src/action_server/actions/count_and_tell.py +++ b/action_server/src/action_server/actions/count_and_tell.py @@ -13,7 +13,8 @@ class CountAndTell(Action): operator the amount of objects, the type and the location. Parameters to pass to the configure() method are: - - `config` (required): the ConfigurationData defines the input data structure for configuration of an action. + - `config` (required): the ConfigurationData defines the input data structure for configuration of an action i.e + a JSON string with for this action a "location" and an " object". """ def __init__(self): Action.__init__(self) @@ -58,7 +59,7 @@ def _start(self): self._execute_result.succeeded = False self._execute_result.message = "I failed to count the objects." return - + self._execute_result.succeeded = True # This message is instantiated in _configure but leaves some stuff to be formatted