Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -55,7 +55,7 @@ st.set_page_config(page_title="Python - Tic Tac Toe", page_icon=":python:")
|
|
| 55 |
st.header("Python - Tic Tac Toe")
|
| 56 |
|
| 57 |
user_input=get_userInput()
|
| 58 |
-
display_board(
|
| 59 |
|
| 60 |
#Button functionality
|
| 61 |
if submit:
|
|
@@ -66,7 +66,7 @@ else:
|
|
| 66 |
update_legalNumbers(legal_numbers)
|
| 67 |
|
| 68 |
if replay:
|
| 69 |
-
display_board(
|
| 70 |
reset_legalNumbers()
|
| 71 |
|
| 72 |
#UI Buttons
|
|
|
|
| 55 |
st.header("Python - Tic Tac Toe")
|
| 56 |
|
| 57 |
user_input=get_userInput()
|
| 58 |
+
display_board(True)
|
| 59 |
|
| 60 |
#Button functionality
|
| 61 |
if submit:
|
|
|
|
| 66 |
update_legalNumbers(legal_numbers)
|
| 67 |
|
| 68 |
if replay:
|
| 69 |
+
display_board(True)
|
| 70 |
reset_legalNumbers()
|
| 71 |
|
| 72 |
#UI Buttons
|