Skip to content
Merged
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions homeassistant/components/climate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,9 @@ def state_attributes(self):
is_aux_heat = self.is_aux_heat_on
data[ATTR_AUX_HEAT] = STATE_ON if is_aux_heat else STATE_OFF

if self.current_humidity is not None:
data[ATTR_CURRENT_HUMIDITY] = self.current_humidity
Comment thread
kennedyshead marked this conversation as resolved.
Outdated

return data

@property
Expand Down