From 0fc06a98d49e7cba5fe9beba62ffbeceda59653b 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 b9c74853..f4acf9f3 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,