aashwinik commited on
Commit
464858e
·
verified ·
1 Parent(s): 1252c54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -31,7 +31,7 @@ def display_board():
31
  #UIApp starts here
32
  st.set_page_config(page_title="Python - Tic Tac Toe", page_icon=":python:")
33
  st.header("Python - Tic Tac Toe")
34
- st.text("Legal Numbers: " + ",".join(legal_numbers))
35
 
36
  user_input=get_userInput()
37
  response=validate_userInput(user_input)
 
31
  #UIApp starts here
32
  st.set_page_config(page_title="Python - Tic Tac Toe", page_icon=":python:")
33
  st.header("Python - Tic Tac Toe")
34
+ st.text("Legal Numbers: " + str(",".join(legal_numbers)))
35
 
36
  user_input=get_userInput()
37
  response=validate_userInput(user_input)