Skip to content

Commit

Permalink
Tox check fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
subhashb committed Oct 19, 2020
1 parent de3ebb9 commit db0ae34
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/protean/adapters/repository/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
""" Package for Concrete Implementations of Protean repositories """
# Standard Library Imports
from collections import defaultdict
import importlib
import logging

from collections import defaultdict

# Protean
from protean.core.exceptions import ConfigurationError, IncorrectUsageError
from protean.core.exceptions import ConfigurationError
from protean.core.repository import BaseRepository, repository_factory
from protean.utils import DomainObjects, fully_qualified_name

Expand Down
1 change: 1 addition & 0 deletions src/protean/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def new():
@main.command()
def livereload_docs():
"""Run in shell as `protean livereload-docs`"""
# Protean
from livereload import Server, shell

server = Server()
Expand Down
4 changes: 3 additions & 1 deletion tests/repository/test_providers.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Standard Library Imports
from typing import List

# Protean
from protean.core.aggregate import BaseAggregate
from protean.core.field.basic import Integer, String
from protean.core.repository import BaseRepository
from protean.core.field.basic import String, Integer
from protean.globals import current_domain
from protean.utils import Database, fully_qualified_name

Expand Down

0 comments on commit db0ae34

Please sign in to comment.