finish docstrings in models package

This commit is contained in:
collerek
2021-01-01 12:54:38 +01:00
parent c4ff69b683
commit 7a8d11b1c7
4 changed files with 298 additions and 5 deletions

View File

@ -1,4 +1,3 @@
import ormar # noqa: I100
from ormar.models.mixins import (
AliasMixin,
ExcludableMixin,
@ -11,4 +10,7 @@ from ormar.models.mixins import (
class ModelTableProxy(
PrefetchQueryMixin, MergeModelMixin, AliasMixin, SavePrepareMixin, ExcludableMixin
):
pass
"""
Used to combine all mixins with different set of functionalities.
One of the bases of the ormar Model class.
"""