fix(scrapers/codeforces): scrape time

This commit is contained in:
Barrett Ruth 2025-10-03 21:06:20 -04:00
parent 33cc2ca36b
commit f48acb4672
3 changed files with 305 additions and 37 deletions

View file

@ -25,11 +25,6 @@ class BaseScraper(ABC):
@abstractmethod
async def scrape_contest_metadata(self, contest_id: str) -> MetadataResult: ...
@abstractmethod
async def scrape_problem_tests(
self, contest_id: str, problem_id: str
) -> TestsResult: ...
@abstractmethod
async def scrape_contest_list(self) -> ContestListResult: ...