diff --git a/piker/_daemon.py b/piker/_daemon.py index 30fdfec2..4c37812d 100644 --- a/piker/_daemon.py +++ b/piker/_daemon.py @@ -18,7 +18,6 @@ Structured, daemon tree service management. """ -from functools import partial from typing import Optional, Union, Callable, Any from contextlib import asynccontextmanager, AsyncExitStack from collections import defaultdict @@ -72,7 +71,7 @@ class Services(BaseModel): ctx, first = await self.ctx_stack.enter_async_context( portal.open_context( target, - **kwargs, + **kwargs, ) ) return ctx