| 27 | # Ensures _cls is properly set during construction |
| 28 | # and when object gets reloaded (prevent regression of #1950) |
| 29 | class EmbedData(EmbeddedDocument): |
| 30 | data = StringField() |
| 31 | meta = {"allow_inheritance": True} |
| 32 | |
| 33 | class DataDoc(Document): |
| 34 | name = StringField() |