fix imports and styles after refactor

This commit is contained in:
collerek
2020-09-15 12:53:14 +02:00
parent ca21e5dde5
commit 6124830642
7 changed files with 12 additions and 9 deletions

View File

@ -1,10 +1,11 @@
from typing import TYPE_CHECKING, Union, List, Any, Tuple
from typing import Any, List, TYPE_CHECKING, Tuple, Union
import ormar
if TYPE_CHECKING: # pragma no cover
from ormar.relations import Relation
from ormar.models import Model
from ormar.queryset import QuerySet
class QuerysetProxy: