We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e099990 commit c407a5aCopy full SHA for c407a5a
python_workflow_definition/src/python_workflow_definition/plot.py
@@ -35,7 +35,7 @@ def plot(file_name):
35
if v[SOURCE_PORT_LABEL] is None:
36
edge_label_dict[v[SOURCE_LABEL]].append(k)
37
else:
38
- edge_label_dict[v[SOURCE_LABEL]].append(k + "=" + v[SOURCE_PORT_LABEL])
+ edge_label_dict[v[SOURCE_LABEL]].append(k + "=result[" + v[SOURCE_PORT_LABEL] + "]")
39
for k, v in edge_label_dict.items():
40
graph.add_edge(str(k), str(target_node), label=", ".join(v))
41
0 commit comments