diff --git a/homeassistant/components/binary_sensor/__init__.py b/homeassistant/components/binary_sensor/__init__.py index 9bf53407b38..c7e1bac9952 100644 --- a/homeassistant/components/binary_sensor/__init__.py +++ b/homeassistant/components/binary_sensor/__init__.py @@ -154,7 +154,7 @@ class BinarySensorEntity(Entity): @property def is_on(self) -> bool | None: """Return true if the binary sensor is on.""" - return None + return self._attr_is_on @property def state(self) -> StateType: