Skip to content

Commit 7ddb235

Browse files
committed
chore: fix lint
2 parents 958f945 + 4c41232 commit 7ddb235

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/devices/test_local_channel.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import asyncio
44
import json
5-
import logging
65
from collections.abc import Generator
76
from unittest.mock import AsyncMock, Mock, patch
87

@@ -148,7 +147,9 @@ async def test_successful_command_response(local_channel: LocalChannel, mock_loo
148147
assert decoded_sent == TEST_REQUEST
149148

150149

151-
async def test_message_decode_error(local_channel: LocalChannel, caplog: pytest.LogCaptureFixture, received_messages: list[RoborockMessage]) -> None:
150+
async def test_message_decode_error(
151+
local_channel: LocalChannel, caplog: pytest.LogCaptureFixture, received_messages: list[RoborockMessage]
152+
) -> None:
152153
"""Test handling of message decode errors."""
153154
local_channel._data_received(b"invalid_payload")
154155
await asyncio.sleep(0.01) # yield

0 commit comments

Comments
 (0)