From b0b19fee45a98514fbea149da5f467cadf64dd69 Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Tue, 7 Jan 2025 08:48:38 +0100 Subject: [PATCH] Fix missing `add_idf_sdkconfig_option` --- components/tx_ultimate_easy/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/components/tx_ultimate_easy/__init__.py b/components/tx_ultimate_easy/__init__.py index 7a7be12..f8ec729 100644 --- a/components/tx_ultimate_easy/__init__.py +++ b/components/tx_ultimate_easy/__init__.py @@ -2,6 +2,7 @@ import esphome.codegen as cg import esphome.config_validation as cv from esphome import automation from esphome.components import uart +from esphome.components.esp32 import add_idf_sdkconfig_option from esphome.const import ( CONF_ID, )