From 23e1ecbb041f1ee389af2b15982995ea15872435 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 13 Jan 2023 18:51:04 -0500 Subject: [PATCH] Passthrough `tractor` kwargs directly --- piker/_daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/_daemon.py b/piker/_daemon.py index 0369f3f9..b631228f 100644 --- a/piker/_daemon.py +++ b/piker/_daemon.py @@ -257,7 +257,7 @@ async def open_piker_runtime( # and spawn the service tree distributed per that. start_method: str = 'trio', - tractor_kwargs: dict = {}, + **tractor_kwargs, ) -> tuple[ tractor.Actor,