ha-core/homeassistant/components/dsmr_reader/__init__.py

20 lines
660 B
Python

"""The DSMR Reader component."""
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
PLATFORMS = [Platform.SENSOR]
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Set up the DSMR Reader integration."""
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
return True
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Unload the DSMR Reader integration."""
# no data stored in hass.data
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)