From 96455e588240a46a9c3e582f35e7283e2b98f23c Mon Sep 17 00:00:00 2001 From: GrKoR Date: Mon, 30 Jun 2025 22:47:39 -0700 Subject: [PATCH] fix (#152): WARNING Using `climate.CLIMATE_SCHEMA` is deprecated --- components/aux_ac/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/aux_ac/climate.py b/components/aux_ac/climate.py index 679577d..46d900c 100644 --- a/components/aux_ac/climate.py +++ b/components/aux_ac/climate.py @@ -190,7 +190,7 @@ def output_info(config): CONFIG_SCHEMA = cv.All( - climate.CLIMATE_SCHEMA.extend( + climate.climate_schema(climate.Climate).extend( { cv.GenerateID(): cv.declare_id(AirCon), cv.Optional(CONF_PERIOD, default="7s"): cv.time_period,