From 3b16a3e1e0fbbec480e9a6a1249aeaab87b5c1ef Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Wed, 23 Aug 2023 14:04:06 +0200 Subject: [PATCH] Small typing fix in binary_sensor group (#98874) --- homeassistant/components/group/binary_sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/group/binary_sensor.py b/homeassistant/components/group/binary_sensor.py index 7415ee8c60d..0c4bf89057d 100644 --- a/homeassistant/components/group/binary_sensor.py +++ b/homeassistant/components/group/binary_sensor.py @@ -100,7 +100,7 @@ class BinarySensorGroup(GroupEntity, BinarySensorEntity): name: str, device_class: BinarySensorDeviceClass | None, entity_ids: list[str], - mode: str | None, + mode: bool | None, ) -> None: """Initialize a BinarySensorGroup entity.""" super().__init__()