From ea11462e1e0f1c81330758e1fc97a4c77657bfd7 Mon Sep 17 00:00:00 2001 From: buxtronix Date: Thu, 20 Jan 2022 23:33:42 +1100 Subject: [PATCH] AM43: autoload "sensor" to avoid compile errors (#3077) --- esphome/components/am43/cover/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/am43/cover/__init__.py b/esphome/components/am43/cover/__init__.py index 1ab0edbe78..79eeb2eef3 100644 --- a/esphome/components/am43/cover/__init__.py +++ b/esphome/components/am43/cover/__init__.py @@ -5,7 +5,7 @@ from esphome.const import CONF_ID, CONF_PIN CODEOWNERS = ["@buxtronix"] DEPENDENCIES = ["ble_client"] -AUTO_LOAD = ["am43"] +AUTO_LOAD = ["am43", "sensor"] CONF_INVERT_POSITION = "invert_position"