You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A bit silly, but a dataclass with a field of type None (or de/serializing something with NoneType itself) errors.
fromdatabind.jsonimportdump, loadload(None, None)
# NoMatchingConverter: no deserializer for `TypeHint(NoneType)` and payload of type `NoneType`dump(None, None)
# NoMatchingConverter: no serializer for `TypeHint(NoneType)` and payload of type `NoneType`
Is this intentional or an oversight?
The text was updated successfully, but these errors were encountered:
A bit silly, but a dataclass with a field of type
None
(or de/serializing something withNoneType
itself) errors.Is this intentional or an oversight?
The text was updated successfully, but these errors were encountered: