Skip to content

Commit b15c9b2

Browse files
committed
Ruff fix
1 parent bddd40b commit b15c9b2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugwise_usb/connection/queue.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,9 @@ async def _send_queue_worker(self) -> None:
187187
_LOGGER.debug("Send_queue_worker started")
188188
while self._running and self._stick is not None:
189189
request = await self._submit_queue.get()
190-
_LOGGER.debug("Sending from send queue %s with prio=%s", request, request.priority)
190+
_LOGGER.debug(
191+
"Sending from send queue %s with prio=%s", request, request.priority
192+
)
191193
if request.priority == Priority.CANCEL:
192194
self._submit_queue.task_done()
193195
return

0 commit comments

Comments
 (0)