forked from goodboy/tractor
1
0
Fork 0

Drop uneeded parent cs cancel

debug_refinements
Tyler Goodlet 2020-07-30 09:38:19 -04:00
parent 47074209a1
commit 9db4324796
1 changed files with 4 additions and 1 deletions

View File

@ -105,7 +105,10 @@ async def _main(
else: else:
# start this local actor as the arbiter # start this local actor as the arbiter
actor = Arbiter( actor = Arbiter(
name or 'arbiter', arbiter_addr=arbiter_addr, **kwargs) name or 'arbiter',
arbiter_addr=arbiter_addr,
**kwargs
)
# ``Actor._async_main()`` creates an internal nursery if one is not # ``Actor._async_main()`` creates an internal nursery if one is not
# provided and thus blocks here until it's main task completes. # provided and thus blocks here until it's main task completes.