Skip to content

Commit

Permalink
Fixes to pass tox -e check
Browse files Browse the repository at this point in the history
  • Loading branch information
subhashb committed Apr 24, 2019
1 parent 18ca3f1 commit ed3b79f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/protean/core/queryset.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 4 additions & 3 deletions tests/core/test_providers.py
Original file line number Diff line number Diff line change
@@ -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"""
Expand Down

0 comments on commit ed3b79f

Please sign in to comment.