Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -161,7 +161,7 @@ def game_ui(game_state):
|
|
161 |
|
162 |
# Show game history
|
163 |
st.write('# Game History')
|
164 |
-
if not st.checkbox('Show game history')
|
165 |
if checkbox:
|
166 |
with open('game_state.txt', 'r') as f:
|
167 |
lines = f.readlines()
|
|
|
161 |
|
162 |
# Show game history
|
163 |
st.write('# Game History')
|
164 |
+
if not st.checkbox('Show game history'):
|
165 |
if checkbox:
|
166 |
with open('game_state.txt', 'r') as f:
|
167 |
lines = f.readlines()
|