Update app.py
Browse files
app.py
CHANGED
@@ -289,7 +289,7 @@ def main():
|
|
289 |
st.session_state.current_q += 1
|
290 |
|
291 |
# Stop after 20 questions max
|
292 |
-
if st.session_state.current_q >=
|
293 |
st.session_state.game_state = "result"
|
294 |
|
295 |
st.experimental_rerun()
|
|
|
289 |
st.session_state.current_q += 1
|
290 |
|
291 |
# Stop after 20 questions max
|
292 |
+
if st.session_state.current_q >= 20:
|
293 |
st.session_state.game_state = "result"
|
294 |
|
295 |
st.experimental_rerun()
|