aur: avoid the asyncio.wait warning

This commit is contained in:
lilydjwg 2021-06-06 12:26:53 +08:00
parent 943847da74
commit d83d8d5367

View File

@ -58,7 +58,7 @@ class Worker(BaseWorker):
fu = self._run_batch(batch, aur_results)
ret.append(fu)
await asyncio.wait(ret)
await asyncio.gather(*ret)
async def _run_batch(
self,