1
mirror of https://github.com/home-assistant/core synced 2024-08-28 03:36:46 +02:00
ha-core/homeassistant/components/dlna_dmr/__init__.py
2022-07-09 17:27:42 +02:00

31 lines
907 B
Python

"""The dlna_dmr component."""
from __future__ import annotations
from homeassistant import config_entries
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
from .const import LOGGER
PLATFORMS = [Platform.MEDIA_PLAYER]
async def async_setup_entry(
hass: HomeAssistant, entry: config_entries.ConfigEntry
) -> bool:
"""Set up a DLNA DMR device from a config entry."""
LOGGER.debug("Setting up config entry: %s", entry.unique_id)
# Forward setup to the appropriate platform
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
return True
async def async_unload_entry(
hass: HomeAssistant, config_entry: config_entries.ConfigEntry
) -> bool:
"""Unload a config entry."""
# Forward to the same platform as async_setup_entry did
return await hass.config_entries.async_unload_platforms(config_entry, PLATFORMS)