Skip to content

Commit 0ab0f5b

Browse files
committed
fix #79
1 parent f71fcda commit 0ab0f5b

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

doc/source/changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
Change Log
55
==========
66

7+
v2.2.0 (2025-03-07)
8+
===================
9+
10+
* Implemented `Move form imports to locally scoped imports where needed in fields.py <https://github.com/bckohan/django-enum/issues/79>`_
11+
712
v2.1.0 (2025-02-24)
813
===================
914

src/django_enum/fields.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,6 @@
4242
from django.utils.functional import cached_property
4343
from django.utils.translation import gettext_lazy as _
4444

45-
from django_enum.forms import (
46-
EnumChoiceField,
47-
EnumFlagField,
48-
FlagSelectMultiple,
49-
NonStrictSelect,
50-
NonStrictSelectMultiple,
51-
)
5245
from django_enum.query import ( # HasAllFlagsExtraBigLookup,
5346
HasAllFlagsLookup,
5447
HasAnyFlagsLookup,
@@ -669,6 +662,13 @@ def formfield(self, form_class=None, choices_form_class=None, **kwargs):
669662
# we try to pass in. Very annoying because we have to
670663
# un-encapsulate some of this initialization logic, this makes our
671664
# EnumChoiceField pretty ugly!
665+
from django_enum.forms import (
666+
EnumChoiceField,
667+
EnumFlagField,
668+
FlagSelectMultiple,
669+
NonStrictSelect,
670+
NonStrictSelectMultiple,
671+
)
672672

673673
is_multi = self.enum and issubclass(self.enum, Flag)
674674
if is_multi and self.enum:

0 commit comments

Comments
 (0)