Skip to content

Commit

Permalink
Fix documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
daggelpop committed Jul 16, 2022
1 parent 41f1f05 commit f8b5459
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DysonPureLinkPlugin/dyson_pure_link_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def set_heating_mode(self, mode, max_temperature=None):
self._change_state(data)

def set_oscillation(self, mode):
"""Changes oscillation: ON|OFF"""
"""Changes oscillation: ON|OFF|TOGGLE"""
if self._is_connected:
if mode == 'TOGGLE':
oscillation = getattr(
Expand All @@ -218,7 +218,7 @@ def set_oscillation(self, mode):
self._change_state({'oson': mode})

def set_standby_monitoring(self, mode):
"""Changes standby monitoring: ON|OFF"""
"""Changes standby monitoring: ON|OFF|TOGGLE"""
if self._is_connected:
if mode == 'TOGGLE':
standby_monitoring = getattr(
Expand Down

0 comments on commit f8b5459

Please sign in to comment.