Drop ununsed `Services` ref

l1_precision_fix
Tyler Goodlet 2022-02-17 16:34:22 -05:00
parent ed5bae0e11
commit 970393bb85
3 changed files with 7 additions and 4 deletions

View File

@ -310,7 +310,7 @@ async def maybe_spawn_daemon(
**kwargs, **kwargs,
) -> tractor.Portal: ) -> tractor.Portal:
""" '''
If no ``service_name`` daemon-actor can be found, If no ``service_name`` daemon-actor can be found,
spawn one in a local subactor and return a portal to it. spawn one in a local subactor and return a portal to it.
@ -321,7 +321,7 @@ async def maybe_spawn_daemon(
This can be seen as a service starting api for remote-actor This can be seen as a service starting api for remote-actor
clients. clients.
""" '''
if loglevel: if loglevel:
get_console_log(loglevel) get_console_log(loglevel)
@ -431,7 +431,9 @@ async def maybe_spawn_brokerd(
**kwargs, **kwargs,
) -> tractor.Portal: ) -> tractor.Portal:
'''Helper to spawn a brokerd service. '''
Helper to spawn a brokerd service *from* a client
who wishes to use the sub-actor-daemon.
''' '''
async with maybe_spawn_daemon( async with maybe_spawn_daemon(

View File

@ -50,7 +50,7 @@ def pikerd(loglevel, host, tl, pdb, tsdb):
open_pikerd( open_pikerd(
loglevel=loglevel, loglevel=loglevel,
debug_mode=pdb, debug_mode=pdb,
) as services, ), # normally delivers a ``Services`` handle
trio.open_nursery() as n, trio.open_nursery() as n,
): ):
if tsdb: if tsdb:

View File

@ -16,6 +16,7 @@
""" """
marketstore cli. marketstore cli.
""" """
from typing import List from typing import List
from functools import partial from functools import partial