From c7e5f20a83ccd2e4d1c66a289d07d5d9594587f5 Mon Sep 17 00:00:00 2001 From: Zac Schellhardt Date: Wed, 13 Oct 2021 11:47:21 -0700 Subject: [PATCH] typo fix --- custom_components/nfl/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/nfl/__init__.py b/custom_components/nfl/__init__.py index 22911cf..119a711 100644 --- a/custom_components/nfl/__init__.py +++ b/custom_components/nfl/__init__.py @@ -243,7 +243,7 @@ async def async_get_state(config) -> dict: found_bye = False values = await async_clear_states(config) for bye_team in data["week"]["teamsOnBye"]: - if team_id.tolower() == bye_team["abbreviation"].tolower(): + if team_id.lower() == bye_team["abbreviation"].lower(): _LOGGER.debug("Bye week confirmed.") found_bye = True values["team_abbr"] = bye_team["abbreviation"]