We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb2376a commit 2a32134Copy full SHA for 2a32134
Roadmap/15 - ASINCRONÍA/python/KevinED11.py
@@ -37,7 +37,8 @@ async def function_e() -> None:
37
38
39
async def execute_void_async_functions(funcs: Iterable[VoidAsyncFunction]) -> None:
40
- await asyncio.gather(*[func() for func in funcs])
+ tasks = [func() for func in funcs]
41
+ await asyncio.gather(*tasks)
42
43
44
async def sleep_program(seconds: Number, name: str = "Sleep") -> None:
0 commit comments