diff --git a/homeassistant/components/lock/wink.py b/homeassistant/components/lock/wink.py index be558dceee7..1900a864877 100644 --- a/homeassistant/components/lock/wink.py +++ b/homeassistant/components/lock/wink.py @@ -57,10 +57,10 @@ class WinkLockDevice(LockDevice): """ True if device is locked. """ return self.wink.state() - def lock(self): + def lock(self, **kwargs): """ Lock the device. """ self.wink.set_state(True) - def unlock(self): + def unlock(self, **kwargs): """ Unlock the device. """ self.wink.set_state(False)