fix(qol): remove ai-like comments

This commit is contained in:
Barrett Ruth 2025-09-21 14:00:38 -04:00
parent 45d439a7b2
commit fe158aa65f
3 changed files with 1 additions and 5 deletions

View file

@ -262,8 +262,6 @@ def scrape_all_problems() -> dict[str, list[ProblemSummary]]:
problem = ProblemSummary(id=problem_id, name=problem_name)
all_categories[current_category].append(problem)
# Preserve HTML document order - do not sort
print(
f"Found {len(all_categories)} categories with {sum(len(probs) for probs in all_categories.values())} problems",
file=sys.stderr,