Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akropp committed Aug 7, 2023
1 parent a79b491 commit 8e780eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions custom_components/savantaudio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
_LOGGER = logging.getLogger(__name__)

async def async_setup_entry(
hass: HomeAssistant, entry: config_entries.ConfigEntry
hass: HomeAssistant, entry: ConfigEntry
) -> bool:
"""Set up platform from a ConfigEntry."""
_LOGGER.info(f'async_setup_entry: {DOMAIN}')
Expand All @@ -38,7 +38,7 @@ async def async_setup_entry(

async def async_unload_entry(
hass: HomeAssistant,
entry: config_entries.ConfigEntry
entry: ConfigEntry
) -> bool:
"""Unload a config entry."""
_LOGGER.info(f'async_unload_entry: {DOMAIN}')
Expand All @@ -55,7 +55,7 @@ async def async_unload_entry(

return unload_ok

async def update_listener(hass: HomeAssistant, config_entry: config_entries.ConfigEntry) -> None:
async def update_listener(hass: HomeAssistant, config_entry: ConfigEntry) -> None:
"""Update listener."""
_LOGGER.info(f'update_listener: {DOMAIN}')
await hass.config_entries.async_reload(config_entry.entry_id)
Expand Down

0 comments on commit 8e780eb

Please sign in to comment.