Skip to content

Commit abc1d61

Browse files
committed
fix: main calling _save_data on userdata when it should call save_data instead
1 parent a588409 commit abc1d61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mastermind/main/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def run(self):
8383
while self.main_menu():
8484
pass # keep calling self.main_menu() until it return False
8585
print("Thank you for playing!")
86-
userdata._save_data()
86+
userdata.save_data()
8787

8888

8989
def main():

0 commit comments

Comments
 (0)