Skip to content

Commit

Permalink
polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
mlin committed Mar 3, 2024
1 parent 98ab96f commit 9c750c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/wdlviz.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def add_node(graph, workflow, node):
if id(node.callee) not in nodes_visited:
nodes_visited.add(id(node.callee))
with top.subgraph(name=f"cluster-{id(node.callee)}") as sg:
sg.attr(label=f"<<B>{node.callee.name}</B>>", fontname=fontname, rank="max")
sg.attr(label=f"<<B>{node.callee.name}</B>>", fontname=fontname)
add_workflow(sg, node.callee)
graph.edge(str(id(workflow)), str(id(node.callee)), style="invis") # helps layout
# dotted edge from call to subworkflow
Expand Down

0 comments on commit 9c750c9

Please sign in to comment.