Correct docstring in Skybell (#42218)

This commit is contained in:
tkdrob 2020-10-22 15:38:15 -04:00 committed by GitHub
parent 93841e3e0c
commit d1c8485297
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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