Skip to content

Commit d300ff8

Browse files
committed
"Return" missing from trio_asyncio.run
Closes github #57
1 parent 69d1ffa commit d300ff8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

trio_asyncio/loop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,4 +390,4 @@ async def _run_task(proc, args):
390390
async with open_loop(queue_len=queue_len):
391391
return await proc(*args)
392392

393-
trio.run(_run_task, proc, args)
393+
return trio.run(_run_task, proc, args)

0 commit comments

Comments
 (0)