Skip to content

Commit fa16853

Browse files
authored
Merge pull request #59 from cuappdev/fix-opp-scoring
Fix opp scoring
2 parents 7b23d84 + 5f18711 commit fa16853

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/scrapers/game_details_scrape.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def field_hockey_summary(box_score_section):
155155
event = row.find_all(TAG_TD)[2]
156156
desc = event.find_all(TAG_SPAN)[-1].text.strip()
157157

158-
if team == "COR" or team == "CU":
158+
if team == "COR" or team == "CU" or team == "CORFH" or team == "CORNELL":
159159
cornell_score += 1
160160
else:
161161
opp_score += 1

0 commit comments

Comments
 (0)