From 6ec9a7aef12fd1efa9bb1ca74d5271fab4547635 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Thu, 22 Feb 2024 00:14:39 -0500 Subject: [PATCH] fix: lower weight of total score --- app/scoreboard/process_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scoreboard/process_data.py b/app/scoreboard/process_data.py index 6af9121..9993e10 100644 --- a/app/scoreboard/process_data.py +++ b/app/scoreboard/process_data.py @@ -85,7 +85,7 @@ def calculate_game_priority(game): home_score = game["homeTeam"]["score"] away_score = game["awayTeam"]["score"] score_difference = abs(home_score - away_score) - score_total = (home_score + away_score) * 25 + score_total = (home_score + away_score) * 20 # Get standings for home and away teams home_team_standings = get_team_standings(game["homeTeam"]["name"]["default"])