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 eaa4dee commit f2b4c89Copy full SHA for f2b4c89
roborock/roborock_queue.py
@@ -18,5 +18,4 @@ async def async_put(self, item: tuple[Any, RoborockException | None], timeout: f
18
19
async def async_get(self, timeout: float | int) -> tuple[Any, RoborockException | None]:
20
async with async_timeout.timeout(timeout):
21
- await self.get()
22
- return await asyncio.wait_for(self.get(), timeout=timeout)
+ return await self.get()
tests/test_api.py
0 commit comments