awacke1 commited on
Commit
622e21b
·
1 Parent(s): 0cc29d1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -7,7 +7,8 @@ import graphviz as graphviz
7
  import streamlit as st
8
  from st_click_detector import click_detector
9
 
10
- st.graphviz_chart('''
 
11
  dot = Digraph()
12
 
13
  dot.node('ActionMechanics', 'Action Mechanics 💪')
@@ -48,9 +49,5 @@ dot.edge('ResourceMechanics', 'StrategyMechanics')
48
  dot.edge('TurnOrderMechanics', 'TimeMechanics')
49
  dot.edge('OtherMechanics', 'ActionMechanics')
50
 
51
-
52
- ''')
53
-
54
-
55
  # Draw the graph using Streamlit's graphviz_chart function
56
  st.graphviz_chart(dot.source)
 
7
  import streamlit as st
8
  from st_click_detector import click_detector
9
 
10
+
11
+
12
  dot = Digraph()
13
 
14
  dot.node('ActionMechanics', 'Action Mechanics 💪')
 
49
  dot.edge('TurnOrderMechanics', 'TimeMechanics')
50
  dot.edge('OtherMechanics', 'ActionMechanics')
51
 
 
 
 
 
52
  # Draw the graph using Streamlit's graphviz_chart function
53
  st.graphviz_chart(dot.source)