From 3255f23ff2ef228b2b90f2875d244c612a0abca2 Mon Sep 17 00:00:00 2001 From: Alexander Vasin Date: Mon, 6 May 2024 23:36:28 +0300 Subject: [PATCH] Ignore gather return type --- aiohttp_s3_client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiohttp_s3_client/client.py b/aiohttp_s3_client/client.py index 02d2282..0103a1d 100644 --- a/aiohttp_s3_client/client.py +++ b/aiohttp_s3_client/client.py @@ -523,7 +523,7 @@ async def put_multipart( self._parts_generator(gen, workers_count, parts_queue), ) try: - part_no, *_ = await asyncio.gather( + part_no, *_ = await asyncio.gather( # type: ignore parts_generator, *workers, )