Skip to content

Commit 66f407d

Browse files
committed
Fix to async
1 parent 3985032 commit 66f407d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise_usb/nodes/circle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def relay_lock(self) -> bool:
181181
"""State of the relay lock."""
182182
return self._relay_lock
183183

184-
def set_relay_lock(self, state: bool) -> None:
184+
async def set_relay_lock(self, state: bool) -> None:
185185
"""Set the state of the relay-lock."""
186186
self._relay_lock = state
187187
await self.publish_feature_update_to_subscribers(

0 commit comments

Comments
 (0)