Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsfaber committed Jan 7, 2024
1 parent ab9a585 commit 070c0ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/zoned_heating/const.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Store constants."""

VERSION = "1.1.0"
VERSION = "1.1.1"
DOMAIN = "zoned_heating"
NAME = "Zoned Heating"
DATA = "data"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/zoned_heating/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def parse_state(state):
if data[ATTR_HVAC_MODE] == HVACMode.OFF:
data[ATTR_HVAC_ACTION] = HVACAction.OFF
elif data[ATTR_TEMPERATURE] > data[ATTR_CURRENT_TEMPERATURE]:
data[ATTR_HVAC_ACTION] = HVACAction.HEAT
data[ATTR_HVAC_ACTION] = HVACAction.HEATING
else:
data[ATTR_HVAC_ACTION] = HVACAction.IDLE
else:
Expand Down

0 comments on commit 070c0ee

Please sign in to comment.