Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -125,14 +125,13 @@ st.set_page_config(page_title="Python - Tic Tac Toe", page_icon=":python:")
|
|
| 125 |
st.header("Python - Tic Tac Toe")
|
| 126 |
display_guide()
|
| 127 |
|
| 128 |
-
user_input=get_userInput()
|
| 129 |
-
|
| 130 |
#UI Buttons
|
| 131 |
submit=st.button('Submit')
|
| 132 |
-
replay=st.button('Replay')
|
| 133 |
|
| 134 |
#Button functionality
|
| 135 |
if submit:
|
|
|
|
| 136 |
response=validate_userInput(user_input)
|
| 137 |
if response:
|
| 138 |
update_legalNumbers(user_input)
|
|
|
|
| 125 |
st.header("Python - Tic Tac Toe")
|
| 126 |
display_guide()
|
| 127 |
|
|
|
|
|
|
|
| 128 |
#UI Buttons
|
| 129 |
submit=st.button('Submit')
|
| 130 |
+
#replay=st.button('Replay')
|
| 131 |
|
| 132 |
#Button functionality
|
| 133 |
if submit:
|
| 134 |
+
user_input=get_userInput()
|
| 135 |
response=validate_userInput(user_input)
|
| 136 |
if response:
|
| 137 |
update_legalNumbers(user_input)
|