From 1fdee08ce0c37e0f09d92e39484fd11675e61588 Mon Sep 17 00:00:00 2001 From: Shingo Kitagawa Date: Sun, 26 Mar 2023 00:10:49 +0900 Subject: [PATCH] eval map for python3 in task_executive --- dialogflow_task_executive/node_scripts/task_executive.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dialogflow_task_executive/node_scripts/task_executive.py b/dialogflow_task_executive/node_scripts/task_executive.py index 686327a55..8e278150a 100644 --- a/dialogflow_task_executive/node_scripts/task_executive.py +++ b/dialogflow_task_executive/node_scripts/task_executive.py @@ -82,8 +82,7 @@ def _list_apps_cb(self, msg): @property def running_apps(self): - return map(lambda a: a.name, - self._latest_msg.running_apps) + return list(map(lambda a: a.name, self._latest_msg.running_apps)) @property def available_apps(self):