From 33cc2ca36baab37572642eb7e85a618db87a245f Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 3 Oct 2025 19:29:10 -0400 Subject: [PATCH] fix(scrapers/cses): rename scraper --- scrapers/cses.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scrapers/cses.py b/scrapers/cses.py index 8bac158..9535762 100644 --- a/scrapers/cses.py +++ b/scrapers/cses.py @@ -198,7 +198,9 @@ class CSESScraper(BaseScraper): success=True, error="", contest_id=contest_id, problems=problems ) - async def scrape_problem_tests(self, category: str, problem_id: str) -> TestsResult: + async def scrape_problem_tests( + self, contest_id: str, problem_id: str + ) -> TestsResult: path = task_path(problem_id) async with httpx.AsyncClient() as client: html = await fetch_text(client, path)