Skip to content

Commit cc6ac00

Browse files
committed
remove django-stubs #60
1 parent 25b46ab commit cc6ac00

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

django_enum/forms.py

+3-8
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
_Choice = Tuple[Any, Any]
2828
_ChoiceNamedGroup = Tuple[str, Iterable[_Choice]]
29-
_FieldChoices = Iterable[_Choice | _ChoiceNamedGroup]
29+
_FieldChoices = Iterable[Union[_Choice, _ChoiceNamedGroup]]
3030

3131

3232
class _ChoicesCallable(Protocol):
@@ -286,20 +286,15 @@ def validate(self, value):
286286
)
287287

288288

289-
# seems to be a type hinting bug when django-stubs and mypy are used together where
290-
# these classes are confused about what type the choices property is - hence the ignore
291-
# comments - these comments are unnecessary when django-stubs is not installed
292-
293-
294-
class EnumChoiceField(ChoiceFieldMixin, TypedChoiceField): # type: ignore
289+
class EnumChoiceField(ChoiceFieldMixin, TypedChoiceField):
295290
"""
296291
The default ``ChoiceField`` will only accept the base enumeration values.
297292
Use this field on forms to accept any value mappable to an enumeration
298293
including any labels or symmetric properties.
299294
"""
300295

301296

302-
class EnumFlagField(ChoiceFieldMixin, TypedMultipleChoiceField): # type: ignore
297+
class EnumFlagField(ChoiceFieldMixin, TypedMultipleChoiceField):
303298
"""
304299
The default ``TypedMultipleChoiceField`` will only accept the base
305300
enumeration values. Use this field on forms to accept any value mappable

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ numpy = [
7777
]
7878
pylint = "^3.1.0"
7979
black = "^24.2.0"
80-
django-stubs = {extras = ["compatible-mypy"], version = "^4.2.7"}
80+
# django-stubs = {extras = ["compatible-mypy"], version = "^4.2.7"}
8181

8282
[tool.poetry.group.psycopg2]
8383
optional = true
@@ -138,7 +138,7 @@ warn_no_return = true
138138
exclude = [
139139
"tests",
140140
]
141-
plugins = ["mypy_django_plugin.main"]
141+
# plugins = ["mypy_django_plugin.main"]
142142

143143

144144
# todo doc8 configuration here is not being picked up and doesnt seem to be working
@@ -176,8 +176,8 @@ disable = [
176176
'R0801'
177177
]
178178

179-
[tool.django-stubs]
180-
django_settings_module = "django_enum.tests.settings"
179+
# [tool.django-stubs]
180+
# django_settings_module = "django_enum.tests.settings"
181181

182182
[tool.pytest.ini_options]
183183
# py.test options:

0 commit comments

Comments
 (0)