##// END OF EJS Templates
Update widget_selection.py
jdavidheiser -
Show More
@@ -62,8 +62,7 b' class _SelectionWidget(DOMWidget):'
62 # python3.3 turned on hash randomization by default - this means that sometimes, randomly
62 # python3.3 turned on hash randomization by default - this means that sometimes, randomly
63 # we try to set value before setting values, due to dictionary ordering. To fix this, force
63 # we try to set value before setting values, due to dictionary ordering. To fix this, force
64 # the setting of self.values right now, before anything else runs
64 # the setting of self.values right now, before anything else runs
65 self.values = kwargs['values']
65 self.values = kwargs.pop('values')
66 kwargs.pop('values')
67 DOMWidget.__init__(self, *args, **kwargs)
66 DOMWidget.__init__(self, *args, **kwargs)
68
67
69 def _values_changed(self, name, old, new):
68 def _values_changed(self, name, old, new):
General Comments 0
You need to be logged in to leave comments. Login now