Changed graphviz.Graph() to graphviz.Digraph() with a graph_attr ratio of .5.

This commit is contained in:
Paul Gauthier 2023-05-26 18:43:46 -07:00
parent 349bcf6973
commit dc1c3e467d

View file

@ -244,7 +244,7 @@ def call_map():
idents = set(defines.keys()).intersection(set(references.keys()))
dot = graphviz.Graph()
dot = graphviz.Digraph(graph_attr={'ratio': '.5'})
labels = defaultdict(list)
edges = defaultdict(float)