From d65d08df6079aec6760042a0c580fe16d5365221 Mon Sep 17 00:00:00 2001 From: Koki Shinjo Date: Mon, 25 Oct 2021 10:08:46 +0900 Subject: [PATCH] [dialogflow_task_executive] fix format Co-authored-by: Shingo Kitagawa --- dialogflow_task_executive/node_scripts/task_executive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dialogflow_task_executive/node_scripts/task_executive.py b/dialogflow_task_executive/node_scripts/task_executive.py index 7dbacbd8f..4e881eb60 100644 --- a/dialogflow_task_executive/node_scripts/task_executive.py +++ b/dialogflow_task_executive/node_scripts/task_executive.py @@ -238,7 +238,7 @@ def dialog_cb(self, msg): rospy.loginfo( "Starting '{}' with parameters '{}'" .format(msg.action, msg.parameters)) - self.app_manager.start_app(action,launch_args) + self.app_manager.start_app(action, launch_args) def app_start_cb(self, name): rospy.loginfo("{} started".format(name))