This was an oversight on my part during #263. When passing a Fields-typed dict to create() or update(), sometimes we need to be able to set a field's value to None, but that doesn't work unless we make the field value optional. I added a line to test_typing.py to prevent regressions.
This was an oversight on my part during #263. When passing a
Fields
-typed dict tocreate()
orupdate()
, sometimes we need to be able to set a field's value toNone
, but that doesn't work unless we make the field value optional. I added a line to test_typing.py to prevent regressions.