Hi, does Flyte not support TypedDict? ```Failed to...
# ask-the-community
s
Hi, does Flyte not support TypedDict?
Copy code
Failed to convert return value for var o0 for function project.wf_58_366.wf_58.dataset_tylo_credit_card_fraud with error <class 'TypeError'>: TypedDict does not support instance and class checks
What should I use instead if I want to use an alias type which is a dictionary with specific keys?
k
you can always contribute a typeengine plugin or develop one for your own code for typeddict
else it should simply use dict?
or dataclass?
or pickle
s
Oh I suppose dataclass would work
I’ll try that - thanks!
174 Views