Pre-fixing JSON update bug.

This commit is contained in:
Landon Wark
2024-04-15 08:12:36 -05:00
parent f994f81d11
commit 7c46578d21
9 changed files with 90 additions and 40 deletions

View File

@@ -86,6 +86,7 @@ class BaseClass(Base):
"""
Add the object to the database and commit
"""
logger.debug(f"Saving object: {pformat(self.__dict__)}")
try:
self.__database_session__.add(self)
self.__database_session__.commit()