fix(scrapers): dont limit results to 100 contests

This commit is contained in:
Barrett Ruth 2025-09-21 14:23:48 -04:00
parent e48e70a5f9
commit 9761cded88

View file

@ -275,7 +275,7 @@ def scrape_contests() -> list[ContestSummary]:
ContestSummary(id=contest_id, name=name, display_name=display_name)
)
return contests[:100]
return contests
except Exception as e:
print(f"Failed to fetch contests: {e}", file=sys.stderr)