Commit 1f4826ca authored by takatost's avatar takatost

fix err typo

parent ef700b26
......@@ -95,7 +95,7 @@ class IfElseNode(BaseNode):
return NodeRunResult(
status=WorkflowNodeExecutionStatus.FAILED,
inputs=node_inputs,
process_datas=process_datas,
process_data=process_datas,
error=str(e)
)
......@@ -107,7 +107,7 @@ class IfElseNode(BaseNode):
return NodeRunResult(
status=WorkflowNodeExecutionStatus.SUCCEEDED,
inputs=node_inputs,
process_datas=process_datas,
process_data=process_datas,
edge_source_handle="false" if not compare_result else "true",
outputs={
"result": compare_result
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment