Skip to content

Commit

Permalink
Add missing config schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc committed Jul 27, 2023
1 parent 730cf1d commit d10dfea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion custom_components/teufel_raumfeld/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
TRIGGER_UPDATE_SYSTEM_STATE,
TRIGGER_UPDATE_ZONE_CONFIG,
)

from homeassistant.components.media_player import BrowseMedia
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.helpers import aiohttp_client
from homeassistant.helpers import config_validation as cv

from .const import (
ATTR_EVENT_WSUPD_TYPE,
Expand Down Expand Up @@ -79,6 +79,8 @@

_LOGGER = logging.getLogger(__name__)

CONFIG_SCHEMA = cv.config_entry_only_config_schema(DOMAIN)


def set_hassfeld_log_level(raumfeld):
"""Activates logging of hassfeld, if teufel_raumfeld is set to DEBUG"""
Expand Down

0 comments on commit d10dfea

Please sign in to comment.