From cbde24cf4f5d27c30f0c82fa72004e089de8e866 Mon Sep 17 00:00:00 2001 From: jbouwh Date: Wed, 22 May 2024 23:39:47 +0000 Subject: [PATCH] Fix unrelated const changes --- homeassistant/components/mqtt/const.py | 32 +------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) diff --git a/homeassistant/components/mqtt/const.py b/homeassistant/components/mqtt/const.py index 14404c4db7f..1ae784cc10f 100644 --- a/homeassistant/components/mqtt/const.py +++ b/homeassistant/components/mqtt/const.py @@ -24,6 +24,7 @@ CONF_PAYLOAD_AVAILABLE = "payload_available" CONF_PAYLOAD_NOT_AVAILABLE = "payload_not_available" CONF_AVAILABILITY = "availability" + CONF_AVAILABILITY_MODE = "availability_mode" CONF_AVAILABILITY_TEMPLATE = "availability_template" CONF_AVAILABILITY_TOPIC = "availability_topic" @@ -216,34 +217,3 @@ SUPPORTED_COMPONENTS = { } TEMPLATE_ERRORS = (jinja2.TemplateError, TemplateError, TypeError, ValueError) - -SUPPORTED_COMPONENTS = { - "alarm_control_panel", - "binary_sensor", - "button", - "camera", - "climate", - "cover", - "device_automation", - "device_tracker", - "event", - "fan", - "humidifier", - "image", - "lawn_mower", - "light", - "lock", - "notify", - "number", - "scene", - "siren", - "select", - "sensor", - "switch", - "tag", - "text", - "update", - "vacuum", - "valve", - "water_heater", -}