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 bddd40b commit b15c9b2Copy full SHA for b15c9b2
plugwise_usb/connection/queue.py
@@ -187,7 +187,9 @@ async def _send_queue_worker(self) -> None:
187
_LOGGER.debug("Send_queue_worker started")
188
while self._running and self._stick is not None:
189
request = await self._submit_queue.get()
190
- _LOGGER.debug("Sending from send queue %s with prio=%s", request, request.priority)
+ _LOGGER.debug(
191
+ "Sending from send queue %s with prio=%s", request, request.priority
192
+ )
193
if request.priority == Priority.CANCEL:
194
self._submit_queue.task_done()
195
return
0 commit comments