Skip to content

Commit

Permalink
Fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
goodboy committed Apr 29, 2021
1 parent bb64024 commit 3de2e9e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tractor/_trionics.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ async def run_in_actor(

portal = await self.start_actor(
name,
enable_modules=[mod_path] + (enable_modules or rpc_module_paths or []),
enable_modules=[mod_path] + (
enable_modules or rpc_module_paths or []
),
bind_addr=bind_addr,
loglevel=loglevel,
# use the run_in_actor nursery
Expand Down Expand Up @@ -367,7 +369,6 @@ async def open_nursery(
async with _open_and_supervise_one_cancels_all_nursery(
actor
) as anursery:

yield anursery

else: # sub-nursery case
Expand Down

0 comments on commit 3de2e9e

Please sign in to comment.