fix(workflow): fix incorrect list append logic in assigner node

This commit is contained in:
mengyonghao
2025-12-22 20:37:42 +08:00
parent 0ad5d1b662
commit 28e88c2d4c

View File

@@ -97,7 +97,7 @@ class ArrayOperator(OperatorBase):
self.pool.set(self.left_selector, list())
def append(self) -> None:
self.check()
self.check(no_right=True)
# TODOrequire type limit in list
origin = self.pool.get(self.left_selector)
origin.append(self.right)