fix(scrapers/cses): rename scraper

This commit is contained in:
Barrett Ruth 2025-10-03 19:29:10 -04:00
parent 4498c4a7fa
commit 33cc2ca36b

View file

@ -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)