From 17efafb2ea737a9bbb849afe294f0a955c3a309e Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Mon, 13 Sep 2021 19:40:24 +0200 Subject: [PATCH] Do not set assumed state for binary sensor groups (#56190) --- homeassistant/components/group/binary_sensor.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/homeassistant/components/group/binary_sensor.py b/homeassistant/components/group/binary_sensor.py index 93d4e1e066e..24d6cb86aa1 100644 --- a/homeassistant/components/group/binary_sensor.py +++ b/homeassistant/components/group/binary_sensor.py @@ -70,8 +70,6 @@ async def async_setup_platform( class BinarySensorGroup(GroupEntity, BinarySensorEntity): """Representation of a BinarySensorGroup.""" - _attr_assumed_state: bool = True - def __init__( self, unique_id: str | None,