Skip to content

Commit

Permalink
missing await found by megalinter
Browse files Browse the repository at this point in the history
  • Loading branch information
Barry1 committed Feb 25, 2024
1 parent f2791f0 commit e104709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/valuefragments/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ async def run_grouped_in_ppe(
with concurrent.futures.ProcessPoolExecutor() as pool_executor:
return [
ready_task.result()
for ready_task in run_calls_in_executor(the_functioncalls, pool_executor)
for ready_task in await run_calls_in_executor(the_functioncalls, pool_executor)
]

__all__.append("run_grouped_in_ppe")
Expand Down

0 comments on commit e104709

Please sign in to comment.