File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 58
58
Undefined deep and down in traits/ui/wx/list_editor.py it checks for
59
59
the len() of the elements of the list. The _Undefined class in traits
60
60
does not define the __len__ method and would error. I tried defining
61
- our own Undefined and even sublassing Undefined, but both of those
61
+ our own Undefined and even subclassing Undefined, but both of those
62
62
failed with a TraitError in our initializer when we assign the
63
63
Undefined to the inputs because of an incompatible type:
64
64
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class HistogramMatchingFilterInputSpec(CommandLineInputSpec):
53
53
)
54
54
histogramAlgorithm = traits .Enum (
55
55
"OtsuHistogramMatching" ,
56
- desc = " histogram algrithm selection" ,
56
+ desc = " histogram algorithm selection" ,
57
57
argstr = "--histogramAlgorithm %s" ,
58
58
)
59
59
verbose = traits .Bool (
You can’t perform that action at this time.
0 commit comments