-
|
I can do so for a X = make_dataclass('X', [('i', int), ('s', str)])But not sure how to 'imbue' the result as a `dataclass_json'? |
Beta Was this translation helpful? Give feedback.
Answered by
FrankC01
May 9, 2025
Replies: 1 comment
-
|
I got it: X = dataclasses_json(make_dataclass('X', [('i', int), ('s', str)])) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
FrankC01
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I got it: