Skip to content

Commit

Permalink
fix: fetch script
Browse files Browse the repository at this point in the history
Signed-off-by: Dup4 <[email protected]>
  • Loading branch information
Dup4 committed Jul 21, 2024
1 parent 03a7379 commit 8087516
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions origin-data/camp/tsinghua/2024/online-qualification/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ def parse_submissions(html: str) -> Submissions:
submission.team_id = team_id

for i in range(4, 17):
tds = tr.select('td')
if len(tds) <= i:
continue
td = tr.select('td')[i]

_submission = copy.deepcopy(submission)
Expand Down

0 comments on commit 8087516

Please sign in to comment.