From 48d429ae0038a11495333addcb1c4101efcb3272 Mon Sep 17 00:00:00 2001 From: Xuwznln <18435084+Xuwznln@users.noreply.github.com> Date: Fri, 31 Oct 2025 22:14:43 +0800 Subject: [PATCH] fix resource_get param --- unilabos/ros/nodes/base_device_node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unilabos/ros/nodes/base_device_node.py b/unilabos/ros/nodes/base_device_node.py index e52ea80d..7025e775 100644 --- a/unilabos/ros/nodes/base_device_node.py +++ b/unilabos/ros/nodes/base_device_node.py @@ -795,7 +795,7 @@ class BaseROS2DeviceNode(Node, Generic[T]): ].call_async( SerialCommand.Request( command=json.dumps( - {"data": {"data": resources_uuid, "with_children": True if action == "add" else "update"}, "action": "get"} + {"data": {"data": resources_uuid, "with_children": True if action == "add" else False}, "action": "get"} ) ) ) # type: ignore