Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def parse_data(self, page: str, **kwargs) -> dict:
collections = []

# Find section with bins in
table = soup.find_all("table", {"class": "hbcRounds"})[0]
table = soup.find_all("table", {"class": "hbcRounds"})[-1]

# For each bin section, get the text and the list elements
for row in table.find_all("tr"):
Expand Down
Loading