Initial Home Assistant commit

This commit is contained in:
2026-06-05 22:34:31 -04:00
commit 6a58b10e6c
4494 changed files with 297833 additions and 0 deletions
@@ -0,0 +1,25 @@
""" Parse CFL Scoreboard JSON response """
from __future__ import annotations
import logging
from typing import TYPE_CHECKING
from .parse_espn import EspnParser
_LOGGER = logging.getLogger(__name__)
if TYPE_CHECKING:
from .coordinator import TeamTrackerCoordinator
class HockeyTechParser(EspnParser):
"""The HockeyTech provider returns the same JSON structure as ESPN."""
#
# initialize_values()
# Set sensor attributes that do not rely on the API
#
def initialize_sensor_values(self, provider_response) -> bool:
rc = super().initialize_sensor_values(provider_response)
self._values.sport = "hockey"
return rc