From 2ca1b6aa09bef380318e4766a1cbda84c83e905d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Koek?= Date: Tue, 26 Mar 2024 18:55:38 +0000 Subject: [PATCH] Update __init__.py --- esphome/components/lora/switch/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/lora/switch/__init__.py b/esphome/components/lora/switch/__init__.py index 1b0230baf1..ea87bfabb4 100644 --- a/esphome/components/lora/switch/__init__.py +++ b/esphome/components/lora/switch/__init__.py @@ -7,7 +7,7 @@ LoraSwitch = lora_ns.class_("LoraSwitch", switch.Switch, cg.Component) PIN_TO_SEND = "pin_to_send" CONFIG_SCHEMA = ( - switch.switch_schema(LoraSwitch, block_inverted=True) + switch.switch_schema(LoraSwitch) .extend( { cv.Required(CONF_LORA): cv.use_id(LoraComponent),