##// END OF EJS Templates
Fix copy-pasted super() call
Thomas Kluyver -
Show More
@@ -108,7 +108,7 b' class _IntRange(_Int):'
108 108 if lower_given != upper_given:
109 109 raise ValueError("Must specify both 'lower' and 'upper' for range widget")
110 110
111 super(_BoundedInt, self).__init__(*pargs, **kwargs)
111 super(_IntRange, self).__init__(*pargs, **kwargs)
112 112
113 113 # ensure the traits match, preferring whichever (if any) was given in kwargs
114 114 if value_given:
General Comments 0
You need to be logged in to leave comments. Login now