diff --git a/controllers/database/database.py b/controllers/database/database.py index e3164ce..bfa910e 100644 --- a/controllers/database/database.py +++ b/controllers/database/database.py @@ -15,6 +15,8 @@ class DatabaseController(ABC): self._conn.close() print(e) + """ Takes a dictionary of fields and returns the object + with those fields populated """ def new_instance(self, of: type, with_fields: Mapping[str, Any]): obj = of.__new__(of) for attr, value in with_fields.items():