From e600f495a266d8447d73eac77fd997b16b94005d Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Tue, 16 Jan 2024 20:02:38 +1100 Subject: [PATCH] feat(nodes): do not freeze InvocationContextData, prevents it from being subclassesd --- invokeai/app/services/shared/invocation_context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invokeai/app/services/shared/invocation_context.py b/invokeai/app/services/shared/invocation_context.py index 3cf3952de0..a849d6b17a 100644 --- a/invokeai/app/services/shared/invocation_context.py +++ b/invokeai/app/services/shared/invocation_context.py @@ -45,7 +45,7 @@ Note: The docstrings are in weird places, but that's where they must be to get I """ -@dataclass(frozen=True) +@dataclass class InvocationContextData: invocation: "BaseInvocation" """The invocation that is being executed."""