some cleanup

This commit is contained in:
collerek
2020-08-11 17:58:34 +02:00
parent 7083b50712
commit 4e91b3837b
10 changed files with 39 additions and 42 deletions

View File

@ -6,18 +6,16 @@ from typing import Any, List, Optional, TYPE_CHECKING, Tuple, Type, TypeVar
from typing import Callable, Dict, Set
import databases
import orm.queryset as qry
from orm.exceptions import ModelDefinitionError
from orm import ForeignKey
from orm.fields.base import BaseField
from orm.relations import RelationshipManager
import pydantic
import sqlalchemy
from pydantic import BaseConfig, BaseModel, create_model
from pydantic.fields import ModelField
import sqlalchemy
import orm.queryset as qry # noqa I100
from orm import ForeignKey
from orm.exceptions import ModelDefinitionError
from orm.fields.base import BaseField
from orm.relations import RelationshipManager
relationship_manager = RelationshipManager()