We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f1f148 commit c08df1aCopy full SHA for c08df1a
labs/guessing_game/main.py
@@ -55,12 +55,11 @@ def main() -> None:
55
elif option == 2:
56
view_scoreboard(data)
57
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.
60
functions.save_data(settings.SCORE_BOARD_FILE, data)
61
print(
62
f'saving score board to the file {settings.SCORE_BOARD_FILE}')
63
print("Goodbye!")
+ input('Enter to exit...')
64
break
65
66
0 commit comments