abhiman24

Results 1 issues of abhiman24

Document inherited from DynamicDocument throws Validation Error: Invalid embedded document instance provided to an EmbeddedDocumentField. ``` class MyEmbDoc(EmbeddedDocument): emb_field = StringField() class MyDoc(DynamicDocument): emb_doc = EmbeddedDocumentField(MyEmbDoc, ) ``` creating an...