diff --git a/src/protean/core/queryset.py b/src/protean/core/queryset.py index cf140e10..39f94131 100644 --- a/src/protean/core/queryset.py +++ b/src/protean/core/queryset.py @@ -1,7 +1,8 @@ """QuerySet Implementation""" import logging -from typing import Union, Any +from typing import Any +from typing import Union from protean.core.repository import repo_factory from protean.utils.query import Q diff --git a/tests/core/test_providers.py b/tests/core/test_providers.py index e22c0bf9..1edc650d 100644 --- a/tests/core/test_providers.py +++ b/tests/core/test_providers.py @@ -1,10 +1,11 @@ """Tests for Provider Functionality""" +from tests.support.dog import Dog +from tests.support.dog import RelatedDog +from tests.support.human import Human + from protean.core.provider import providers from protean.impl.repository.dict_repo import DictProvider -from tests.support.dog import Dog, RelatedDog -from tests.support.human import Human - class TestProviders: """This class holds tests for Providers Singleton"""