Skip to content

Commit 278fced

Browse files
committed
Improve visual quality a bit.
1 parent ba19668 commit 278fced

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed
Loading
Loading

visualizer/visualize.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ def build_digraph(state_machine):
143143
Produce a L{graphviz.Digraph} object from a state machine.
144144
"""
145145
digraph = graphviz.Digraph(node_attr={'fontname': 'Menlo'},
146-
edge_attr={'fontname': 'Menlo'})
146+
edge_attr={'fontname': 'Menlo'},
147+
graph_attr={'dpi': '200'})
147148

148149
# First, add the states as nodes.
149150
seen_first_state = False

0 commit comments

Comments
 (0)