From 4045930bd98a43db8daac39f51800ba41f1888d4 Mon Sep 17 00:00:00 2001 From: Nicholas Dyer Date: Fri, 12 May 2023 11:46:23 -0400 Subject: [PATCH] updated data.py docstrings --- pocket_friends/game_files/io/data.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pocket_friends/game_files/io/data.py b/pocket_friends/game_files/io/data.py index 89dcd66..e7dfeee 100644 --- a/pocket_friends/game_files/io/data.py +++ b/pocket_friends/game_files/io/data.py @@ -3,7 +3,12 @@ import json class SaveData: + """ + Class used to read and write save data for the game + Attributes: + attributes (dict): Dictionary containing all the attributes to read and write from a save file. + """ def __init__(self): """ Constructs the object with all starting values.