Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bram van Dartel committed Dec 28, 2024
1 parent 8208bb9 commit 68b4ffb
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions custom_components/afvalwijzer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
# from homeassistant.config_entries import ConfigEntry
# from homeassistant.core import HomeAssistant
# from homeassistant.helpers.typing import ConfigType
# from .const.const import DOMAIN
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.helpers.typing import ConfigType
from .const.const import DOMAIN


# async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
# """Set up the Afvalwijzer integration."""
# hass.data.setdefault(DOMAIN, {})
# return True
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
"""Set up the Afvalwijzer integration."""
hass.data.setdefault(DOMAIN, {})
return True


# async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
# """Set up Afvalwijzer from a config entry."""
# # Store config entry data
# hass.data[DOMAIN][entry.entry_id] = entry.data
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Set up Afvalwijzer from a config entry."""
# Store config entry data
hass.data[DOMAIN][entry.entry_id] = entry.data

# # Forward the setup to the sensor platform
# await hass.config_entries.async_forward_entry_setups(entry, ["sensor"])
# return True
# Forward the setup to the sensor platform
await hass.config_entries.async_forward_entry_setups(entry, ["sensor"])
return True


# async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
# """Unload a config entry."""
# # Remove stored data
# if entry.entry_id in hass.data[DOMAIN]:
# hass.data[DOMAIN].pop(entry.entry_id)
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Unload a config entry."""
# Remove stored data
if entry.entry_id in hass.data[DOMAIN]:
hass.data[DOMAIN].pop(entry.entry_id)

# # Unload the sensor platform
# await hass.config_entries.async_forward_entry_unload(entry, "sensor")
# return True
# Unload the sensor platform
await hass.config_entries.async_forward_entry_unload(entry, "sensor")
return True

0 comments on commit 68b4ffb

Please sign in to comment.