Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
myTselection committed Nov 23, 2024
1 parent dd210c5 commit 028a516
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions custom_components/bibliotheek_be/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

from homeassistant import config_entries
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import Config, HomeAssistant
from homeassistant.core import HomeAssistant
from homeassistant.helpers.typing import ConfigType
from homeassistant.const import Platform
from .utils import *
from homeassistant.const import (
Expand Down Expand Up @@ -41,7 +42,7 @@
_LOGGER = logging.getLogger(__name__)


async def async_setup(hass: HomeAssistant, config: dict):
async def async_setup(hass: HomeAssistant, config: ConfigType):
"""Set up this component using YAML."""
_LOGGER.info(STARTUP)
if config.get(DOMAIN) is None:
Expand Down

0 comments on commit 028a516

Please sign in to comment.