Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
aunefyren committed Feb 5, 2024
1 parent 569456d commit c1ddd83
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions custom_components/bluesound_alt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.config_entries import ConfigEntry
import logging

_LOGGER = logging.getLogger(__name__)

async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Set up a config entry for Bluesound."""
_LOGGER.debug("Starting entry: %s", entry)

await async_setup_platform(hass, entry, AddEntitiesCallback, None)
return True

0 comments on commit c1ddd83

Please sign in to comment.