rename newbasemodel

This commit is contained in:
collerek
2020-08-23 18:04:33 +02:00
parent 081337fe72
commit f2ff436fe8
6 changed files with 13 additions and 13 deletions

View File

@ -3,10 +3,10 @@ from typing import Any, List
import sqlalchemy
import ormar.queryset # noqa I100
from ormar.models import FakePydantic # noqa I100
from ormar.models import NewBaseModel # noqa I100
class Model(FakePydantic):
class Model(NewBaseModel):
__abstract__ = False
@classmethod