File tree 2 files changed +7
-12
lines changed
2 files changed +7
-12
lines changed Original file line number Diff line number Diff line change 26
26
27
27
_Choice = Tuple [Any , Any ]
28
28
_ChoiceNamedGroup = Tuple [str , Iterable [_Choice ]]
29
- _FieldChoices = Iterable [_Choice | _ChoiceNamedGroup ]
29
+ _FieldChoices = Iterable [Union [ _Choice , _ChoiceNamedGroup ] ]
30
30
31
31
32
32
class _ChoicesCallable (Protocol ):
@@ -286,20 +286,15 @@ def validate(self, value):
286
286
)
287
287
288
288
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 ):
295
290
"""
296
291
The default ``ChoiceField`` will only accept the base enumeration values.
297
292
Use this field on forms to accept any value mappable to an enumeration
298
293
including any labels or symmetric properties.
299
294
"""
300
295
301
296
302
- class EnumFlagField (ChoiceFieldMixin , TypedMultipleChoiceField ): # type: ignore
297
+ class EnumFlagField (ChoiceFieldMixin , TypedMultipleChoiceField ):
303
298
"""
304
299
The default ``TypedMultipleChoiceField`` will only accept the base
305
300
enumeration values. Use this field on forms to accept any value mappable
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ numpy = [
77
77
]
78
78
pylint = " ^3.1.0"
79
79
black = " ^24.2.0"
80
- django-stubs = {extras = [" compatible-mypy" ], version = " ^4.2.7" }
80
+ # django-stubs = {extras = ["compatible-mypy"], version = "^4.2.7"}
81
81
82
82
[tool .poetry .group .psycopg2 ]
83
83
optional = true
@@ -138,7 +138,7 @@ warn_no_return = true
138
138
exclude = [
139
139
" tests" ,
140
140
]
141
- plugins = [" mypy_django_plugin.main" ]
141
+ # plugins = ["mypy_django_plugin.main"]
142
142
143
143
144
144
# todo doc8 configuration here is not being picked up and doesnt seem to be working
@@ -176,8 +176,8 @@ disable = [
176
176
' R0801'
177
177
]
178
178
179
- [tool .django-stubs ]
180
- django_settings_module = " django_enum.tests.settings"
179
+ # [tool.django-stubs]
180
+ # django_settings_module = "django_enum.tests.settings"
181
181
182
182
[tool .pytest .ini_options ]
183
183
# py.test options:
You can’t perform that action at this time.
0 commit comments