mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-13 15:04:59 -05:00
fix(app): remove errant comment from prev impl
This commit is contained in:
@@ -142,7 +142,7 @@ class SqliteSessionQueue(SessionQueueBase):
|
||||
WHERE batch_id = ?
|
||||
ORDER BY item_id DESC;
|
||||
""",
|
||||
(batch.batch_id,) # batch_id is the 4th element in the tuple
|
||||
(batch.batch_id,)
|
||||
)
|
||||
item_ids = [row[0] for row in cursor.fetchall()]
|
||||
except Exception:
|
||||
|
||||
Reference in New Issue
Block a user