Skip to content

Commit

Permalink
Fix __repr__ of AirHumidifierMiotStatus (Closes: #908) (#909)
Browse files Browse the repository at this point in the history
  • Loading branch information
syssi authored Jan 13, 2021
1 parent fb1aee8 commit 9c57999
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions miio/airhumidifier_miot.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def __repr__(self) -> str:
s = (
"<AirHumidifierMiotStatus"
"power=%s, "
"fault=%s, "
"error=%s, "
"mode=%s, "
"target_humidity=%s, "
"water_level=%s, "
Expand All @@ -228,7 +228,7 @@ def __repr__(self) -> str:
"clean_mode=%s>"
% (
self.power,
self.fault,
self.error,
self.mode,
self.target_humidity,
self.water_level,
Expand Down

0 comments on commit 9c57999

Please sign in to comment.