Adding a piece to the SQLite implementation that I forgot last night

This commit is contained in:
Bradley Bickford 2025-10-12 08:43:35 -04:00
parent 97b97f9a38
commit a30961f884

View File

@ -6,6 +6,7 @@ class SQLite(Database):
super(self, Database).__init__()
self.db = sqlite3.connect(db_name)
self.db.autocommit = True
def close(self):
self.db.close()