Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,7 @@ omit =
homeassistant/components/weather/zamg.py
homeassistant/components/zeroconf.py
homeassistant/components/zwave/util.py
homeassistant/components/vacuum/mqtt.py


[report]
Expand Down
6 changes: 3 additions & 3 deletions homeassistant/components/vacuum/demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def turn_off(self, **kwargs):
self.schedule_update_ha_state()

def stop(self, **kwargs):
"""Turn the vacuum off."""
"""Stop the vacuum."""
if self.supported_features & SUPPORT_STOP == 0:
return

Expand All @@ -162,7 +162,7 @@ def clean_spot(self, **kwargs):
self.schedule_update_ha_state()

def locate(self, **kwargs):
"""Turn the vacuum off."""
"""Locate the vacuum (usually by playing a song)."""
if self.supported_features & SUPPORT_LOCATE == 0:
return

Expand All @@ -184,7 +184,7 @@ def start_pause(self, **kwargs):
self.schedule_update_ha_state()

def set_fan_speed(self, fan_speed, **kwargs):
"""Tell the vacuum to return to its dock."""
"""Set the vacuum's fan speed."""
if self.supported_features & SUPPORT_FAN_SPEED == 0:
return

Expand Down
Loading