fix(scrape): proper vars

This commit is contained in:
Barrett Ruth 2025-09-21 00:31:10 -04:00
parent df1b4c2009
commit 1f38dba57f
3 changed files with 22 additions and 36 deletions

View file

@ -269,7 +269,6 @@ def scrape_contests() -> list[ContestSummary]:
if single_div_match:
display_name = f"Round {single_div_match.group(1)} (Div. 1)"
else:
# Fallback: extract just the round number
round_match = re.search(r"Codeforces Round (\d+)", name)
if round_match:
display_name = f"Round {round_match.group(1)}"
@ -278,7 +277,7 @@ def scrape_contests() -> list[ContestSummary]:
ContestSummary(id=contest_id, name=name, display_name=display_name)
)
return contests[:100] # Limit to recent 100 contests
return contests[:100]
except Exception as e:
print(f"Failed to fetch contests: {e}", file=sys.stderr)