mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
aur: avoid the asyncio.wait warning
This commit is contained in:
parent
943847da74
commit
d83d8d5367
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ class Worker(BaseWorker):
|
||||||
fu = self._run_batch(batch, aur_results)
|
fu = self._run_batch(batch, aur_results)
|
||||||
ret.append(fu)
|
ret.append(fu)
|
||||||
|
|
||||||
await asyncio.wait(ret)
|
await asyncio.gather(*ret)
|
||||||
|
|
||||||
async def _run_batch(
|
async def _run_batch(
|
||||||
self,
|
self,
|
||||||
|
|
Loading…
Add table
Reference in a new issue