:param document_type: The type of :class:`~mongoengine.EmbeddedDocument` the list will hold. :param kwargs: Keyword arguments passed into the parent :class:`~mongoengine.ListField`
(self, document_type, **kwargs)
| 978 | """ |
| 979 | |
| 980 | def __init__(self, document_type, **kwargs): |
| 981 | """ |
| 982 | :param document_type: The type of |
| 983 | :class:`~mongoengine.EmbeddedDocument` the list will hold. |
| 984 | :param kwargs: Keyword arguments passed into the parent :class:`~mongoengine.ListField` |
| 985 | """ |
| 986 | super().__init__(field=EmbeddedDocumentField(document_type), **kwargs) |
| 987 | |
| 988 | |
| 989 | class SortedListField(ListField): |
nothing calls this directly
no test coverage detected