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
When calling DataModel.from_xml(root), given root is the root node of a data tree including an AnyData or AnyXML node, the recursion will eventually call AnyContentNode.from_xml(). Through a chain of super.from_xml() calls and classes that simply do not override/implement this method, we get back to SchemaNode.from_xml(), which raises NotImplementedError.
When calling
DataModel.from_xml(root)
, givenroot
is the root node of a data tree including anAnyData
orAnyXML
node, the recursion will eventually callAnyContentNode.from_xml()
. Through a chain ofsuper.from_xml()
calls and classes that simply do not override/implement this method, we get back toSchemaNode.from_xml()
, which raisesNotImplementedError
.Relates to #94
The text was updated successfully, but these errors were encountered: