From c9f6dadd7374159b4b899c944790caadf9060368 Mon Sep 17 00:00:00 2001 From: GrKoR Date: Wed, 17 Nov 2021 14:54:56 +0300 Subject: [PATCH] sensor will be auto loaded --- components/aux_ac/climate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/aux_ac/climate.py b/components/aux_ac/climate.py index ce29db8..1bf601d 100644 --- a/components/aux_ac/climate.py +++ b/components/aux_ac/climate.py @@ -22,7 +22,8 @@ from esphome.components.climate import ( _LOGGER = logging.getLogger(__name__) CODEOWNERS = ["@GrKoR"] -DEPENDENCIES = ["climate", "uart", "sensor"] +DEPENDENCIES = ["climate", "uart"] +AUTO_LOAD = ["sensor"] CONF_SUPPORTED_MODES = 'supported_modes' CONF_SUPPORTED_SWING_MODES = 'supported_swing_modes'