You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 28, 2019. It is now read-only.
Hello,
I had weird behavior with small list it worked with more than 20 elements I had this problem:
AttributeError Traceback (most recent call last)
~/.conda/envs/jupyter/lib/python3.6/site-packages/paramnb/widgets.py in _apply_selection(self, event)
242 self._lists[selected].options = merged if merged else ['']
243 self._lists[not selected].options = leftovers if leftovers else ['']
--> 244 self.value = [self._options_dict[o] for o in self._lists[True].options if o != '']
245 self._apply_filters()
246
~/.conda/envs/jupyter/lib/python3.6/site-packages/paramnb/widgets.py in <listcomp>(.0)
242 self._lists[selected].options = merged if merged else ['']
243 self._lists[not selected].options = leftovers if leftovers else ['']
--> 244 self.value = [self._options_dict[o] for o in self._lists[True].options if o != '']
245 self._apply_filters()
246
After digging the documentation the class ListSelectorWidget mention, it switches from a regular SelectMultiple widget to a two-pane CrossSelect widget.
The command below gives me the version of each module:
Hello,
I had weird behavior with small list it worked with more than 20 elements I had this problem:
A minimal exemple working:
A minimal exemple not working:
After digging the documentation the class ListSelectorWidget mention, it switches from a regular SelectMultiple widget to a two-pane CrossSelect widget.
The command below gives me the version of each module:
The text was updated successfully, but these errors were encountered: