From 23cb75fe200a35c7170d70e5ec5a90a738f63b68 Mon Sep 17 00:00:00 2001 From: Simone Chemelli Date: Fri, 10 Dec 2021 16:40:31 +0100 Subject: [PATCH] Interim fix (#61435) --- homeassistant/components/shelly/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/shelly/__init__.py b/homeassistant/components/shelly/__init__.py index 27f25211a96..4109130ab80 100644 --- a/homeassistant/components/shelly/__init__.py +++ b/homeassistant/components/shelly/__init__.py @@ -68,12 +68,13 @@ from .utils import ( BLOCK_PLATFORMS: Final = [ "binary_sensor", "button", + "climate", "cover", "light", "sensor", "switch", ] -BLOCK_SLEEPING_PLATFORMS: Final = ["binary_sensor", "climate", "sensor"] +BLOCK_SLEEPING_PLATFORMS: Final = ["binary_sensor", "sensor"] RPC_PLATFORMS: Final = ["binary_sensor", "button", "light", "sensor", "switch"] _LOGGER: Final = logging.getLogger(__name__)