Skip to content

Commit

Permalink
Merge pull request #88 from wuruoyu/main
Browse files Browse the repository at this point in the history
Fix a bug in dot backend
  • Loading branch information
wuruoyu authored Jun 21, 2024
2 parents b999965 + 1cde522 commit 9e9d170
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ def _gen_graph_edges(self, cur_gv_graph, node_to_graph_node: Dict):
target_graph_node.incomingEdges.append(
graph_builder.IncomingEdge(sourceNodeId=source_node))

# Recursive on subgraphs.
subgraphs = cur_gv_graph.get_subgraphs()
for subgraph in subgraphs:
self._gen_graph_edges(subgraph, node_to_graph_node)
# Recursive on subgraphs.
subgraphs = cur_gv_graph.get_subgraphs()
for subgraph in subgraphs:
self._gen_graph_edges(subgraph, node_to_graph_node)

def _create_graph_node(self, node_name: str,
node_label: str,
Expand Down

0 comments on commit 9e9d170

Please sign in to comment.