Skip to content

Commit c08df1a

Browse files
committed
update guessing_game lab
1 parent 0f1f148 commit c08df1a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

labs/guessing_game/main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,11 @@ def main() -> None:
5555
elif option == 2:
5656
view_scoreboard(data)
5757
elif option == 3:
58-
# FIXME - Update data to include the new player's info.
59-
# FIXME - Add code to save the data to the file using correct function in utility/functions.py.
6058
functions.save_data(settings.SCORE_BOARD_FILE, data)
6159
print(
6260
f'saving score board to the file {settings.SCORE_BOARD_FILE}')
6361
print("Goodbye!")
62+
input('Enter to exit...')
6463
break
6564

6665

0 commit comments

Comments
 (0)