Philip
Philip
there is currently another module that does this. `$ pip install dataclass-type-validator` ```python from dataclasses import dataclass from dataclass_type_validator import dataclass_type_validator @dataclass_json @dataclass(frozen=True) class InvoiceData: client_id: int invoice_number: int created_at:...
I have this same problem, downgrading to `~=0.7.0` should fix this
I'm tend to think your solution is more explicit and therefore at least better for code cleanliness. My use case was to take in a `dataclass` and produce another `dataclass`...