Skip to content

Commit adfd39c

Browse files
authored
fix misnamed attribute in _MultipleSelection
1 parent 8fbc773 commit adfd39c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ipywidgets/widgets/widget_selection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def __init__(self, *args, **kwargs):
304304
# so we don't have errors the first time validators run
305305
self._initializing_traits_ = True
306306
options = _make_options(kwargs.get('options', ()))
307-
self._full_options = options
307+
self._options_full = options
308308
self.set_trait('_options_labels', tuple(i[0] for i in options))
309309
self._options_values = tuple(i[1] for i in options)
310310

0 commit comments

Comments
 (0)