Skip to content

Commit 31ca8fa

Browse files
Pascal Nasahlnasahlpa
Pascal Nasahl
authored andcommitted
Adapt .dot graph type.
As we are using a directed multipgraph, switch from strict digraph to digraph in the .dot function. Signed-off-by: Pascal Nasahl <[email protected]>
1 parent a199a06 commit 31ca8fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graph_builder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def write_dot_graph(graph: nx.MultiDiGraph, file_name: Path) -> None:
117117
}}"""
118118

119119
DOT = """
120-
strict digraph {{
120+
digraph {{
121121
{dot}
122122
}}
123123
"""

0 commit comments

Comments
 (0)