🐛 fix uninit ctx

This commit is contained in:
远野千束 2024-10-14 23:27:06 +08:00
parent 5d505d1c89
commit 1bf1380b63

View File

@ -13,7 +13,12 @@ _current_ctx: "Context | None" = None # 注入当前进程上下文
class SubProcess: class SubProcess:
def __init__( def __init__(
self, name: str, func: ProcessFuncType, ctx: Context = Context(), *args, **kwargs self,
name: str,
func: ProcessFuncType,
ctx: Context = Context(),
*args,
**kwargs,
): ):
self.name = name self.name = name
self.func = func self.func = func