From 714fb366d025453f0254a1ef836c5682c3dc2926 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Mon, 16 Mar 2026 19:45:01 +0000 Subject: [PATCH] fix: remove unused variable to pass ruff lint --- tests/test_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_sync.py b/tests/test_sync.py index 6ca4695..074691e 100644 --- a/tests/test_sync.py +++ b/tests/test_sync.py @@ -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")