Skip to content

Commit

Permalink
Fix for isort>4.3.10. (#1055)
Browse files Browse the repository at this point in the history
  • Loading branch information
carltongibson committed Mar 8, 2019
1 parent ab31272 commit 3027c9e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion django_filters/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# flake8: noqa
import pkgutil

from .filterset import FilterSet
from .filters import *
from .filterset import FilterSet

# We make the `rest_framework` module available without an additional import.
# If DRF is not installed, no-op.
Expand Down
2 changes: 1 addition & 1 deletion django_filters/rest_framework/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# flake8: noqa
from .backends import DjangoFilterBackend
from .filterset import FilterSet
from .filters import *
from .filterset import FilterSet
2 changes: 1 addition & 1 deletion django_filters/rest_framework/backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from django.template import loader
from django.utils.deprecation import RenameMethodsBase

from . import filters, filterset
from .. import compat, utils
from . import filters, filterset


# TODO: remove metaclass in 2.1
Expand Down

0 comments on commit 3027c9e

Please sign in to comment.