fix async

This commit is contained in:
Barrett Ruth 2025-09-24 00:41:10 -04:00
parent 540364926d
commit 7ac91a3c4d
8 changed files with 155 additions and 21 deletions

View file

@ -272,7 +272,11 @@ def scrape_contests() -> list[ContestSummary]:
r"[\uff01-\uff5e]", lambda m: chr(ord(m.group()) - 0xFEE0), name
)
contests.append(ContestSummary(id=contest_id, name=name, display_name=name))
# Skip AtCoder Heuristic Contests (AHC) as they don't have standard sample tests
if not contest_id.startswith("ahc"):
contests.append(
ContestSummary(id=contest_id, name=name, display_name=name)
)
return contests