Skip to content

Commit f2b4c89

Browse files
committed
fix: removed unneeded line
1 parent eaa4dee commit f2b4c89

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

roborock/roborock_queue.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@ async def async_put(self, item: tuple[Any, RoborockException | None], timeout: f
1818

1919
async def async_get(self, timeout: float | int) -> tuple[Any, RoborockException | None]:
2020
async with async_timeout.timeout(timeout):
21-
await self.get()
22-
return await asyncio.wait_for(self.get(), timeout=timeout)
21+
return await self.get()

tests/test_api.py

Whitespace-only changes.

0 commit comments

Comments
 (0)