Skip to content

Commit

Permalink
JFC test before you commit...
Browse files Browse the repository at this point in the history
  • Loading branch information
mill1000 committed Aug 26, 2023
1 parent 1e3ed8c commit 3fd4ef7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/midea_ac/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def preset_modes(self) -> list:
modes.append(PRESET_SLEEP)

# Add turbo/boost if supported by the device
if (getattr(self._device, "supports_turbo_mode", False) and :
if getattr(self._device, "supports_turbo_mode", False):
modes.append(PRESET_BOOST)

return modes
Expand Down

0 comments on commit 3fd4ef7

Please sign in to comment.