From d1c8485297c76c2ef864872a108cfab9b22d7ce8 Mon Sep 17 00:00:00 2001 From: tkdrob Date: Thu, 22 Oct 2020 15:38:15 -0400 Subject: [PATCH] Correct docstring in Skybell (#42218) --- homeassistant/components/skybell/switch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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