We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 011cc29 commit ef1deb0Copy full SHA for ef1deb0
plugwise_usb/nodes/sed.py
@@ -662,8 +662,8 @@ async def schedule_task_when_awake(
662
self, task_fn: Coroutine[Any, Any, bool]
663
) -> None:
664
"""Add task to queue to be executed when node is awake."""
665
+ _LOGGER.debug("Add task %s to queue waiting for awake", task_fn)
666
if iscoroutine(task_fn):
- _LOGGER.debug("Add task %s to queue waiting for awake", task_fn)
667
async with self._send_task_lock:
668
self._send_task_queue.append(task_fn)
669
0 commit comments