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 2c0242b commit 5e0eab4Copy full SHA for 5e0eab4
tests/test_usb.py
@@ -228,7 +228,9 @@ async def mkdir(self, path: str) -> None:
228
class MockStickController:
229
"""Mock stick controller."""
230
231
- send_response: list = []
+ def __init__(self) -> None:
232
+ """Initialize MockStickController."""
233
+ self.send_response: list[pw_responses.PlugwiseResponse] = []
234
235
async def subscribe_to_messages(
236
self,
0 commit comments