-
-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from_dict raises when nullable ref is set to None #679
Comments
After a little digging, wild guess would be that this happens because of this line (note the |
On a side topic - it looks like I read there seems to be ambiguity when you specify something like
which allows for passing a |
I run in the same troubles with nullalable Yes this is deprecated in 3.1 https://jane.readthedocs.io/en/latest/tips/nullable.html but 3.0 is heavy used and will be for years. @fabiog1901 your argument is correct but
null is not a string. By big model and big nested objects is it a pain to find out where you have an error because you get just AttributeError: 'NoneType' object has no attribute 'copy' of top object. |
Hello, Having the same issue (version 0.15.1) Thanks |
I solved the problem by customizing the template, property_macros.py.jinja in particular.
with
And then use the |
We have the same issue and moved to OpenAPITools due to this. The Unset field is raising an error when trying to get an api response from_dict, when the field is not there. |
+1 |
Describe the bug
from_dict
when we set a nullable field ref to None. This behavior:None
ref fieldsfrom_dict
acceptnullable
string
,object
,array
, etc to be set to NoneTo Reproduce
Steps to reproduce the behavior:
Expected behavior
We expect
MyObject.from_dict({"myId":"id", "myObject": None, "myArray": None, "myString": None, "myRef": None})
to run without errors.Some debug
having a look in the debugger, it raises there::
The code generated should rather look like:
The text was updated successfully, but these errors were encountered: