Skip to content

Commit

Permalink
patch (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
DurgNomis-drol authored Sep 25, 2021
1 parent d67a083 commit bc06866
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,4 @@ dmypy.json

/test.py
.myt_app/
tests/
2 changes: 1 addition & 1 deletion mytoyota/hvac.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def _set_legacy(self, hvac: dict) -> None:

self.current_temperature = hvac.get("InsideTemperature", None)
self.target_temperature = hvac.get("SettingTemperature", None)
self.blower_on = hvac.get("BlowerStatus", False)
self.blower_on = hvac.get("BlowerStatus", None)

self.front_defogger_on = hvac.get("FrontDefoggerStatus", False)
self.rear_defogger_on = hvac.get("RearDefoggerStatus", False)
Expand Down

0 comments on commit bc06866

Please sign in to comment.