Skip to content

Commit 73fe3c3

Browse files
committed
removed exists from bool argument
1 parent 034be88 commit 73fe3c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/afni/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
class BlurToFWHMInputSpec(AFNICommandInputSpec):
2525
in_file = File(desc='The dataset that will be smoothed', argstr='-input %s', mandatory=True, exists=True)
2626

27-
automask = traits.Bool(desc='Create an automask from the input dataset.', argstr='-automask', exists=True)
27+
automask = traits.Bool(desc='Create an automask from the input dataset.', argstr='-automask')
2828
fwhm = traits.Float(desc='Blur until the 3D FWHM reaches this value (in mm)', argstr='-FWHM %f')
2929
fwhmxy = traits.Float(desc='Blur until the 2D (x,y)-plane FWHM reaches this value (in mm)', argstr='-FWHMxy %f')
3030
blurmaster = File(desc='The dataset whose smoothness controls the process.', argstr='-blurmaster %s', exists=True)

0 commit comments

Comments
 (0)