diff --git a/invokeai/app/services/batch_manager_storage.py b/invokeai/app/services/batch_manager_storage.py index f26c610633..471836de9c 100644 --- a/invokeai/app/services/batch_manager_storage.py +++ b/invokeai/app/services/batch_manager_storage.py @@ -548,8 +548,7 @@ class SqliteBatchProcessStorage(BatchProcessStorageBase): """, (changes.state, batch_id, session_id), ) - - self._conn.commit() + self._conn.commit() except sqlite3.Error as e: self._conn.rollback() raise BatchSessionSaveException from e