From 01933c5b266b6fe12b91a64e61fe4461b616ede0 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Mon, 29 Jun 2026 00:23:57 -0400 Subject: [PATCH] style(test): drop unused img in ungraduated-head sweep test (ruff F841) Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01Ttrj5P7upUTueSfoJcxEqa --- tests/test_head_auto_apply.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_head_auto_apply.py b/tests/test_head_auto_apply.py index e56b98b..4e835aa 100644 --- a/tests/test_head_auto_apply.py +++ b/tests/test_head_auto_apply.py @@ -104,7 +104,7 @@ def test_sweep_skips_under_supported_head(db_sync): def test_sweep_skips_ungraduated_head(db_sync): # auto_apply_threshold is None (head never reached the precision bar). - img = _img(db_sync, "d" * 64, _emb(0)) + _img(db_sync, "d" * 64, _emb(0)) tag = Tag(name="nograd", kind=TagKind.general) db_sync.add(tag) db_sync.flush()