mzimm003 commited on
Commit
3c554b8
·
1 Parent(s): 8b3273d

add bot selection label

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -15,7 +15,8 @@ def play(bot_select):
15
 
16
  def main(kwargs=None):
17
  bot_select = st.selectbox(
18
- options=["DeepChessReplicationMinMax"]
 
19
  )
20
  st.button("Play bot!", on_click=play, args=bot_select)
21
 
 
15
 
16
  def main(kwargs=None):
17
  bot_select = st.selectbox(
18
+ label="bot",
19
+ options=["DeepChessReplicationMinMax"],
20
  )
21
  st.button("Play bot!", on_click=play, args=bot_select)
22