fix(scrapers): dont limit results to 100 contests
This commit is contained in:
parent
e48e70a5f9
commit
9761cded88
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue