From 30f03dc01e8d8bf5ea17c9cbfebaf4e640789a1e Mon Sep 17 00:00:00 2001 From: Mick Vleeshouwer Date: Sun, 31 May 2026 13:48:09 +0200 Subject: [PATCH] Fix sentence-casing of Overkiz energy demand status binary sensor (#172653) --- homeassistant/components/overkiz/binary_sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/overkiz/binary_sensor.py b/homeassistant/components/overkiz/binary_sensor.py index 9f9e37d43c7..ed2ac5eb405 100644 --- a/homeassistant/components/overkiz/binary_sensor.py +++ b/homeassistant/components/overkiz/binary_sensor.py @@ -96,7 +96,7 @@ BINARY_SENSOR_DESCRIPTIONS: list[OverkizBinarySensorDescription] = [ # DomesticHotWaterProduction/WaterHeatingSystem OverkizBinarySensorDescription( key=OverkizState.IO_OPERATING_MODE_CAPABILITIES, - name="Energy Demand Status", + name="Energy demand status", device_class=BinarySensorDeviceClass.HEAT, value_fn=lambda state: ( cast(dict, state).get(OverkizCommandParam.ENERGY_DEMAND_STATUS) == 1