Skip to content

Commit f47d7bc

Browse files
committed
Merge branch 'master' into release
2 parents 1d4ed38 + 08c03be commit f47d7bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/code/ImplicitInstantiation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
ImageType = itk.Image[itk.UC, 2]
2626
reader = itk.ImageFileReader[ImageType].New(FileName=input_filename)
2727
# Here we specify the filter input explicitly
28-
median = itk.MedianImageFilter.New(reader.GetOutput())
28+
median = itk.MedianImageFilter.New(Input=reader.GetOutput())
2929
# Same as above but shortened. Input does not have to be specified.
3030
median = itk.MedianImageFilter.New(reader.GetOutput())
3131
# Same as above. .GetOutput() does not have to be specified.

0 commit comments

Comments
 (0)