From b4a24dacf94dee18463d0a69c63ccd8c95e14d15 Mon Sep 17 00:00:00 2001 From: skyeslattery Date: Sat, 26 Apr 2025 14:10:43 -0400 Subject: [PATCH] add missing cornell tag --- src/scrapers/game_details_scrape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scrapers/game_details_scrape.py b/src/scrapers/game_details_scrape.py index a79fbd8..b20b78f 100644 --- a/src/scrapers/game_details_scrape.py +++ b/src/scrapers/game_details_scrape.py @@ -40,7 +40,7 @@ def soccer_summary(box_score_section): event = row.find_all(TAG_TD)[2] desc = event.find_all(TAG_SPAN)[-1].text.strip() - if team == "COR" or team == "CU": + if team == "COR" or team == "CU" or team == "Corn": cornell_score += 1 else: opp_score += 1