orange-midnight-93312
05/28/2025, 1:19 AMValueError: Only generic univariate typing.List[T] type is supported.
I have searched online but I am still at a loss. Is this a non-starter? I don't understand why Flyte can't interpret this list. Reference code below
@dataclass_json
@dataclass
class NodeStore:
node_types: List[NodeType] = field(
metadata=config(
encoder=enum_list_encode,
decoder=partial(enum_list_decode, NodeType), # pyright: ignore
),
default_factory=lambda: DEFAULT_NODE_TYPES,
)
alert-oil-1341
05/28/2025, 4:04 AM