Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -16,7 +16,7 @@ def get_userInput():
|
|
| 16 |
def validate_userInput(user_input):
|
| 17 |
if user_input.isdigit():
|
| 18 |
if int(user_input) >= 1 and int(user_input) <= 9:
|
| 19 |
-
if int(user_input) in st.session_state.legal_numbers:
|
| 20 |
return True
|
| 21 |
else:
|
| 22 |
return False
|
|
|
|
| 16 |
def validate_userInput(user_input):
|
| 17 |
if user_input.isdigit():
|
| 18 |
if int(user_input) >= 1 and int(user_input) <= 9:
|
| 19 |
+
#if int(user_input) in st.session_state.legal_numbers:
|
| 20 |
return True
|
| 21 |
else:
|
| 22 |
return False
|