From 4cd9a05d0d3bb4a654f3c84cb241b72d402d471a Mon Sep 17 00:00:00 2001 From: leslie2046 <253605712@qq.com> Date: Wed, 23 Jul 2025 09:09:53 +0800 Subject: [PATCH] fix CI --- api/core/workflow/nodes/list_operator/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/core/workflow/nodes/list_operator/node.py b/api/core/workflow/nodes/list_operator/node.py index e9a87f2b25..8537878d63 100644 --- a/api/core/workflow/nodes/list_operator/node.py +++ b/api/core/workflow/nodes/list_operator/node.py @@ -188,7 +188,7 @@ class ListOperatorNode(BaseNode): if len(variable.value) > int(value): result = variable.value[value] else: - result = {} + result = None return variable.model_copy(update={"value": [result]})