We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffa9ebb commit c7595ffCopy full SHA for c7595ff
Wrapping/Generators/Python/itkHelpers.py
@@ -98,7 +98,7 @@ def image_filter_wrapper(*args, **kwargs):
98
output = image_filter(*tuple(args_list), **kwargs)
99
if isinstance(output, tuple):
100
output_list = list(output)
101
- for index, value in output_list:
+ for index, value in enumerate(output_list):
102
if isinstance(value, itk.Image):
103
if have_xarray_input:
104
data_array = itk.xarray_from_image(value)
0 commit comments