From 7c894720d04998bd44f5b14b592f0cb497271096 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Thu, 18 Sep 2025 22:15:06 -0400 Subject: [PATCH] fix(ci): remove unused import --- tests/scrapers/test_codeforces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scrapers/test_codeforces.py b/tests/scrapers/test_codeforces.py index e9c9429..67277ea 100644 --- a/tests/scrapers/test_codeforces.py +++ b/tests/scrapers/test_codeforces.py @@ -1,6 +1,6 @@ from unittest.mock import Mock from scrapers.codeforces import scrape, scrape_contest_problems -from scrapers.models import Problem, TestCase +from scrapers.models import Problem def test_scrape_success(mocker, mock_codeforces_html):