diff options
author | David Smith <39445562+smithdc1@users.noreply.github.com> | 2021-01-19 05:52:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-19 06:52:34 +0100 |
commit | 6b01511f04da573d450cdffab471538e70aec01e (patch) | |
tree | 6830da7a9849f6c8de2b58fc0c3b970c16bf02ce | |
parent | 34aa4f1997bd7f1fb0c43d6d1c6848e86b928f2e (diff) | |
download | django-6b01511f04da573d450cdffab471538e70aec01e.tar.gz |
Removed unnecessary empty dict creation in ChoiceWidget.create_option().
build_atttrs() already creates an empty dict if extra_attrs is None.
-rw-r--r-- | django/forms/widgets.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/django/forms/widgets.py b/django/forms/widgets.py index 1b1c1439cb..67e44829ff 100644 --- a/django/forms/widgets.py +++ b/django/forms/widgets.py @@ -620,8 +620,6 @@ class ChoiceWidget(Widget): def create_option(self, name, value, label, selected, index, subindex=None, attrs=None): index = str(index) if subindex is None else "%s_%s" % (index, subindex) - if attrs is None: - attrs = {} option_attrs = self.build_attrs(self.attrs, attrs) if self.option_inherits_attrs else {} if selected: option_attrs.update(self.checked_attribute) |