fix(ci): fix ruff lint

This commit is contained in:
Barrett Ruth 2025-09-22 22:10:49 -04:00
parent db391da52c
commit 3b768cc6c4
3 changed files with 19 additions and 9 deletions

View file

@ -42,6 +42,16 @@ _REGISTRY_FUNCTIONS = [
__all__ = _BASE_EXPORTS + _SCRAPER_CLASSES + _REGISTRY_FUNCTIONS
_exported_types = (
ScraperConfig,
ContestListResult,
ContestSummary,
MetadataResult,
ProblemSummary,
TestCase,
TestsResult,
)
def get_scraper(platform: str) -> type[BaseScraper]:
if platform not in ALL_SCRAPERS: