Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zacs committed Oct 13, 2021
1 parent cbce1c4 commit c7e5f20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/nfl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit c7e5f20

Please sign in to comment.