From 856b85f7968ea17c94841ba69c1b7261d063704e Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Sun, 27 Apr 2025 14:37:25 -0500 Subject: [PATCH] nhl upcoming game fitler from 'is_coming' to 'is_within_window --- src/nhl_managers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nhl_managers.py b/src/nhl_managers.py index 90857e42..ee6650ee 100644 --- a/src/nhl_managers.py +++ b/src/nhl_managers.py @@ -768,7 +768,7 @@ class NHLUpcomingManager(BaseNHLManager): new_upcoming_games = [] for event in events: game = self._extract_game_details(event) - if game and not game['is_final'] and game['is_upcoming']: + if game and not game['is_final'] and game['is_within_window']: new_upcoming_games.append(game) # Filter for favorite teams