Skip to content

Commit 4ff9bbf

Browse files
committedFeb 24, 2020
FIX: add usedefault metadata to trait with default
1 parent 29d3cb4 commit 4ff9bbf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎nipype/interfaces/io.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -3005,7 +3005,9 @@ class ExportFileInputSpec(BaseInterfaceInputSpec):
30053005
in_file = File(exists=True, mandatory=True, desc="Input file name")
30063006
out_file = File(mandatory=True, desc="Output file name")
30073007
check_extension = traits.Bool(
3008-
True, desc="Ensure that the input and output file extensions match"
3008+
True,
3009+
usedefault=True,
3010+
desc="Ensure that the input and output file extensions match",
30093011
)
30103012
clobber = traits.Bool(desc="Permit overwriting existing files")
30113013

0 commit comments

Comments
 (0)