Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ SWIM_LANES = {
|
|
10 |
|
11 |
# Define the graph structure
|
12 |
graph = Digraph()
|
13 |
-
graph.attr(rankdir="TB")
|
14 |
graph.attr(fontsize="20")
|
15 |
graph.attr(compound="true")
|
16 |
graph.attr(nodesep="0.5")
|
|
|
10 |
|
11 |
# Define the graph structure
|
12 |
graph = Digraph()
|
13 |
+
graph.attr(rankdir="TB") # Top to Bottom or LR Left to Right
|
14 |
graph.attr(fontsize="20")
|
15 |
graph.attr(compound="true")
|
16 |
graph.attr(nodesep="0.5")
|