updated socketio namespace

This commit is contained in:
ChuckBuilds
2025-05-22 17:51:14 -05:00
parent 5a4e82ab6f
commit 3a73d7cb22
2 changed files with 10 additions and 16 deletions

View File

@@ -452,12 +452,6 @@ class NCAAFBLiveManager(BaseNCAAFBManager): # Renamed class
else:
logging.info("[NCAAFB] Initialized NCAAFBLiveManager in live mode") # Updated log message
def update(self):
"""Update live game data."""
if not self.is_enabled: return
current_time = time.time()
interval = self.no_data_interval if not self.live_games and not self.test_mode else self.update_interval
if current_time - self.last_update >= interval:
self.last_update = current_time