Skip to content

Commit d35046c

Browse files
committed
Correct syntax
1 parent 91cb465 commit d35046c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise_usb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def accept_join_request(self, state: bool) -> None:
206206
)
207207

208208
self._network.accept_join_request = state
209-
create_task(self._network.allow_join_requests(state))
209+
task = create_task(self._network.allow_join_requests(state))
210210

211211
async def clear_cache(self) -> None:
212212
"""Clear current cache."""

0 commit comments

Comments
 (0)