From 79231a1f0dd14abe8d70669fe25552866f654375 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Tue, 2 Jan 2024 22:26:03 +0000 Subject: [PATCH] Added missing comment --- controllers/database/database.py | 2 ++ 1 file changed, 2 insertions(+) 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():