Skip to content

Commit

Permalink
fix: Remove useless param hello on graphviz node creation
Browse files Browse the repository at this point in the history
  • Loading branch information
haidaraM committed Jan 6, 2022
1 parent 4a135ff commit 5273dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansibleplaybookgrapher/renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def render_node(self, graph: Digraph, edge: EdgeNode, color: str, node_counter:
else:
edge_label = f"{node_counter} {edge.name}"
graph.node(destination_node.id, label=node_label_prefix + destination_node.name, shape=shape,
id=destination_node.id, tooltip=destination_node.name, color=color, hello=destination_node.name)
id=destination_node.id, tooltip=destination_node.name, color=color)
graph.edge(source_node.id, destination_node.id, label=edge_label, color=color, fontcolor=color, id=edge.id,
tooltip=edge_label, labeltooltip=edge_label)

Expand Down

0 comments on commit 5273dea

Please sign in to comment.