From 763a0cf7405de34eea6fe24cb960f034f4ac5c84 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 6 Mar 2026 16:48:36 -0500 Subject: [PATCH] style: ruff format test_scrapers.py --- tests/test_scrapers.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_scrapers.py b/tests/test_scrapers.py index b75b3fc..c4fa6d5 100644 --- a/tests/test_scrapers.py +++ b/tests/test_scrapers.py @@ -118,7 +118,9 @@ def test_usaco_precision_extracted(run_scraper_offline): rc, objs = run_scraper_offline("usaco", "tests", "dec24_gold") assert rc == 0 precisions = [obj["precision"] for obj in objs if "problem_id" in obj] - assert any(p is not None for p in precisions), "Expected at least one problem with precision" + assert any(p is not None for p in precisions), ( + "Expected at least one problem with precision" + ) @pytest.mark.parametrize(