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

@ -1,8 +1,11 @@
from typing import Type, Any, Dict, Optional, List
from typing import Any, Dict, List, Optional, TYPE_CHECKING, Type
import sqlalchemy
from orm import ModelDefinitionError
from orm import ModelDefinitionError # noqa I101
if TYPE_CHECKING: # pragma no cover
from orm.models import Model
class RequiredParams: