Comment on Loading Pydantic models from JSON without running out of memoryparentComments−monomial1yI rarely need to dynamically add attributes myself on dataclasses like this but unfortunately this also means things like `@cached_property` won't work because it can't internally cache the method result anywhere.−franga20001yIIRC you can just include a __dict__ slot and @cached_property should start working again. I
Comments
I rarely need to dynamically add attributes myself on dataclasses like this but unfortunately this also means things like `@cached_property` won't work because it can't internally cache the method result anywhere.
IIRC you can just include a __dict__ slot and @cached_property should start working again. I