fix: remove unused variable to pass ruff lint

This commit is contained in:
Viktor Barzin 2026-03-16 19:45:01 +00:00
parent e47efee6b6
commit 714fb366d0
No known key found for this signature in database
GPG key ID: 0EB088298288D958

View file

@ -505,7 +505,7 @@ class TestRetryCount:
engine._conn.commit()
with patch.object(engine, "_api_request") as mock_api:
result = engine._push_pending_ops()
engine._push_pending_ops()
# Op should be deleted (skipped), API never called
cursor = engine._conn.execute("SELECT COUNT(*) as cnt FROM pending_ops")