1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-02 04:06:41 +01:00

Fix sentence-casing of Overkiz energy demand status binary sensor (#172653)

This commit is contained in:
Mick Vleeshouwer
2026-05-31 13:48:09 +02:00
committed by GitHub
parent 4f92c1686b
commit 30f03dc01e
@@ -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