Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zha/application/platforms/binary_sensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def info_object(self) -> BinarySensorEntityInfo:

@property
def is_on(self) -> bool:
"""Return True if the switch is on based on the state machine."""
"""Return True if the binary sensor is on based on the state machine."""
raw_state = self._cluster.get(self._attribute_name)
if raw_state is None:
return False
Expand Down
Loading