From e94f051f28ff10621935c8abb9c9fde92747876a Mon Sep 17 00:00:00 2001 From: Robert Lippmann Date: Wed, 11 Oct 2023 16:05:16 -0400 Subject: [PATCH] add PLATFORM_SCHEMAS --- custom_components/adtpulse/alarm_control_panel.py | 2 ++ custom_components/adtpulse/binary_sensor.py | 3 +++ 2 files changed, 5 insertions(+) diff --git a/custom_components/adtpulse/alarm_control_panel.py b/custom_components/adtpulse/alarm_control_panel.py index 5f19a26..1d48cda 100644 --- a/custom_components/adtpulse/alarm_control_panel.py +++ b/custom_components/adtpulse/alarm_control_panel.py @@ -20,6 +20,7 @@ ) from homeassistant.core import HomeAssistant, callback from homeassistant.exceptions import HomeAssistantError +from homeassistant.helpers.config_validation import config_entry_only_config_schema from homeassistant.helpers.entity import DeviceInfo from homeassistant.helpers.entity_platform import ( AddEntitiesCallback, @@ -48,6 +49,7 @@ LOG = getLogger(__name__) +PLATFORM_SCHEMA = config_entry_only_config_schema ALARM_MAP = { ADT_ALARM_ARMING: STATE_ALARM_ARMING, ADT_ALARM_AWAY: STATE_ALARM_ARMED_AWAY, diff --git a/custom_components/adtpulse/binary_sensor.py b/custom_components/adtpulse/binary_sensor.py index a96f410..3fbed18 100644 --- a/custom_components/adtpulse/binary_sensor.py +++ b/custom_components/adtpulse/binary_sensor.py @@ -17,6 +17,7 @@ ) from homeassistant.config_entries import ConfigEntry from homeassistant.core import HomeAssistant, callback +from homeassistant.helpers.config_validation import config_entry_only_config_schema from homeassistant.helpers.device_registry import CONNECTION_NETWORK_MAC from homeassistant.helpers.entity import DeviceInfo from homeassistant.helpers.entity_platform import AddEntitiesCallback @@ -37,6 +38,8 @@ LOG = getLogger(__name__) +PLATFORM_SCHEMA = config_entry_only_config_schema + # please keep these alphabetized to make changes easier ADT_DEVICE_CLASS_TAG_MAP = { "co": BinarySensorDeviceClass.CO,