Skip to content

Commit

Permalink
Fixed deprecated constant bug
Browse files Browse the repository at this point in the history
  • Loading branch information
apbarratt authored Sep 16, 2024
1 parent 94e2918 commit 3e3a907
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/localtuya/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@
HVACAction.IDLE: "Warming",
},
"heating/warming": {
CURRENT_HVAC_HEAT: "heating",
CURRENT_HVAC_IDLE: "warming",
HVACAction.HEATING: "heating",
HVACAction.IDLE: "warming",
},
"1/0 (Heating)": {
HVACAction.HEATING: "1",
Expand Down

0 comments on commit 3e3a907

Please sign in to comment.