Skip to content

Commit 0cdf9a6

Browse files
committed
FIX: Use value rather than default_value
1 parent a36866d commit 0cdf9a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nibabies/interfaces/workbench.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def _format_arg(self, name, trait_spec, value):
188188

189189
class CiftiCreateDenseTimeseriesInputSpec(CommandLineInputSpec):
190190
out_file = File(
191-
default_value="dtseries.nii",
191+
value="dtseries.nii",
192192
usedefault=True,
193193
argstr="%s",
194194
position=0,
@@ -436,7 +436,7 @@ class CiftiDilateInputSpec(CommandLineInputSpec):
436436

437437
class CiftiCreateLabelInputSpec(CommandLineInputSpec):
438438
out_file = File(
439-
default_value="dlabel.nii",
439+
value="dlabel.nii",
440440
usedefault=True,
441441
argstr="%s",
442442
position=0,

0 commit comments

Comments
 (0)