Skip to content

Commit 5767659

Browse files
committed
rerun isort
1 parent ca73c88 commit 5767659

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

django_enum/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
IntegerChoices,
1515
TextChoices,
1616
)
17-
from django_enum.filters import (
18-
FilterSet,
19-
EnumFilter
20-
)
2117
from django_enum.fields import (
2218
EnumBigIntegerField,
2319
EnumCharField,
@@ -29,6 +25,7 @@
2925
EnumPositiveSmallIntegerField,
3026
EnumSmallIntegerField,
3127
)
28+
from django_enum.filters import EnumFilter, FilterSet
3229
from django_enum.forms import EnumChoiceField
3330

3431
__all__ = [

django_enum/tests/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3007,8 +3007,8 @@ def test_color(self):
30073007
).first() == instance
30083008
)
30093009

3010-
from django_enum import EnumChoiceField
30113010
from django.forms import ModelForm
3011+
from django_enum import EnumChoiceField
30123012

30133013
class TextChoicesExampleForm(ModelForm):
30143014
color = EnumChoiceField(TextChoicesExample.Color)

0 commit comments

Comments
 (0)