Skip to content

Commit

Permalink
[dialogflow_task_executive] fix format
Browse files Browse the repository at this point in the history
Co-authored-by: Shingo Kitagawa <[email protected]>
  • Loading branch information
sktometometo and knorth55 committed Jan 5, 2022
1 parent 9756883 commit 8b83d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dialogflow_task_executive/node_scripts/task_executive.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def start_app(self, name, launch_args):
req = StartAppRequest()
req.name = name
for key, value in launch_args.items():
req.args.append(KeyValue(key=key,value=value))
req.args.append(KeyValue(key=key, value=value))
res = self._srv_start_app(req)
if res.started:
rospy.loginfo("{} successfully started".format(name))
Expand Down

0 comments on commit 8b83d6a

Please sign in to comment.