chore: ruff

This commit is contained in:
psychedelicious
2025-06-30 11:43:16 +10:00
parent 5c66dfed8e
commit c1937b1379

View File

@@ -142,7 +142,7 @@ class SqliteSessionQueue(SessionQueueBase):
WHERE batch_id = ?
ORDER BY item_id DESC;
""",
(batch.batch_id,)
(batch.batch_id,),
)
item_ids = [row[0] for row in cursor.fetchall()]
except Exception: