Skip to content

Commit

Permalink
Update __init__.py (#11)
Browse files Browse the repository at this point in the history
Fixing typo to correctly set tempearture in Cool mode.
  • Loading branch information
yraghu authored Jun 4, 2021
1 parent 444f1b0 commit 7e47583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiolyric/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ async def update_thermostat(
else:
data["heatSetpoint"] = device.changeableValues.heatSetpoint
if coolSetpoint is not None:
data["coolSetpoint"] = heatSetpoint
data["coolSetpoint"] = coolSetpoint
else:
data["coolSetpoint"] = device.changeableValues.coolSetpoint

Expand Down

0 comments on commit 7e47583

Please sign in to comment.