aashwinik commited on
Commit
c9f2565
·
verified ·
1 Parent(s): ac27494

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: ", legal_numbers.join(","))
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: ", ",".join(legal_numbers))
35
 
36
  user_input=get_userInput()
37
  response=validate_userInput(user_input)