Ian Bentley

Results 12 comments of Ian Bentley

fwiw - I was having the same problem, and restarting sublime after each theme change was what I needed to do.

I was able to reproduce this bug with a few simplifications to the code snippet: ``` from dataclasses import dataclass from dataclasses_json import dataclass_json from typing import Union import uuid...

This looks pretty exciting, but I don't fully understand it. I'd like to get on a call to walk through it when you have time.

@goetas this is the second half of #1549 allowing a workaround for deserializing non-discriminated unions.

Hi @goetas yes, I still need these changes. They are only incidentally related to unions. This pull request introduces a `DeserializationContext` that causes deserialization to fail when non-nullable fields are...

I agree that increasing the complexity of validation in the serializer is a slippery slope, but I would like to argue that this is actually more of a type check...

@goetas I'm gonna take another shot at convincing you that this is worth keeping in the seializer. 1. As I've pointed out before - it is consistent with the other...

@goetas I wonder if you'd had a chance to consider this?

Hi @goetas Have you had a chance to read my posts?

> I would really like to keep the graph visitor as simple as possible (and to keep validation outside of the serializer) This statement is very confusing to me. The...