Skip to content

Commit 48edb6f

Browse files
authored
Fix bug in simple workflow (#9)
* Fix bug in simple workflow * Update workflow_simple.json
1 parent b82b4a6 commit 48edb6f

File tree

1 file changed

+11
-17
lines changed

1 file changed

+11
-17
lines changed

workflow_simple.json

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,15 @@
11
{
22
"nodes": {
3-
"0": "simple_workflow.add_x_and_y_and_z",
4-
"1": "simple_workflow.add_x_and_y",
5-
"2": "simple_workflow.add_x_and_y",
6-
"3": "simple_workflow.add_x_and_y",
7-
"4": 1,
8-
"5": 2
9-
},
3+
"0": "simple_workflow.add_x_and_y",
4+
"1": "simple_workflow.add_x_and_y_and_z",
5+
"2": 1,
6+
"3": 2
7+
},
108
"edges": [
11-
{"target": 0, "targetHandle": "x", "source": 1, "sourceHandle": "x"},
12-
{"target": 1, "targetHandle": "x", "source": 4, "sourceHandle": null},
13-
{"target": 1, "targetHandle": "y", "source": 5, "sourceHandle": null},
14-
{"target": 0, "targetHandle": "y", "source": 2, "sourceHandle": "y"},
15-
{"target": 2, "targetHandle": "x", "source": 4, "sourceHandle": null},
16-
{"target": 2, "targetHandle": "y", "source": 5, "sourceHandle": null},
17-
{"target": 0, "targetHandle": "z", "source": 3, "sourceHandle": "z"},
18-
{"target": 3, "targetHandle": "x", "source": 4, "sourceHandle": null},
19-
{"target": 3, "targetHandle": "y", "source": 5, "sourceHandle": null}
9+
{"target": 0, "targetHandle": "x", "source": 2, "sourceHandle": null},
10+
{"target": 0, "targetHandle": "y", "source": 3, "sourceHandle": null},
11+
{"target": 1, "targetHandle": "x", "source": 0, "sourceHandle": "x"},
12+
{"target": 1, "targetHandle": "y", "source": 0, "sourceHandle": "y"},
13+
{"target": 1, "targetHandle": "z", "source": 0, "sourceHandle": "z"}
2014
]
21-
}
15+
}

0 commit comments

Comments
 (0)