diff --git a/homeassistant/components/skybell/switch.py b/homeassistant/components/skybell/switch.py index 3d1d890b295..1ad13af9249 100644 --- a/homeassistant/components/skybell/switch.py +++ b/homeassistant/components/skybell/switch.py @@ -58,7 +58,7 @@ class SkybellSwitch(SkybellDevice, SwitchEntity): setattr(self._device, self._switch_type, True) def turn_off(self, **kwargs): - """Turn on the switch.""" + """Turn off the switch.""" setattr(self._device, self._switch_type, False) @property