mirror of https://github.com/django/django.git
Removed useless itertools.chain() call in ChoiceWidget.optgroups().
This commit is contained in:
parent
11cd46930e
commit
f0d9ede9e6
|
@ -583,7 +583,7 @@ class ChoiceWidget(Widget):
|
||||||
groups = []
|
groups = []
|
||||||
has_selected = False
|
has_selected = False
|
||||||
|
|
||||||
for index, (option_value, option_label) in enumerate(chain(self.choices)):
|
for index, (option_value, option_label) in enumerate(self.choices):
|
||||||
if option_value is None:
|
if option_value is None:
|
||||||
option_value = ''
|
option_value = ''
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue