-
Notifications
You must be signed in to change notification settings - Fork 36
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
_allow_dynamic_properties = False raises bad error for nested schemas #105
Comments
The description of this issue rather minimalist, but I'm running into this problem which may be the same issue: class A(jsonobject.JsonObject):
_allow_dynamic_properties = False
class B(A):
foo = jsonobject.StringProperty(required=True)
class C(jsonobject.JsonObject):
components = jsonobject.DictProperty(A, default={})
c = C()
c.components["test"] = (B(foo="/foo/bar"))
C(c.to_json())
Moving |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: