Skip to content

Commit

Permalink
Improve incomplete type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
disrupted committed Jul 29, 2024
1 parent 725fd25 commit 776dcc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kpops/pipeline/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def build_execution_graph(
async def run_parallel_tasks(
coroutines: list[Coroutine[Any, Any, None]],
) -> None:
tasks = []
tasks: list[asyncio.Task[None]] = []
for coro in coroutines:
tasks.append(asyncio.create_task(coro))
await asyncio.gather(*tasks)
Expand Down

0 comments on commit 776dcc4

Please sign in to comment.