From 43628090fa7cbd917c336fce65164f81100dadf0 Mon Sep 17 00:00:00 2001 From: o_nu Date: Thu, 30 Sep 2021 14:09:26 +0200 Subject: [PATCH] Removed exists=True from MathsOutput --- nipype/interfaces/fsl/maths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nipype/interfaces/fsl/maths.py b/nipype/interfaces/fsl/maths.py index 9e05b4d102..f3276024b7 100644 --- a/nipype/interfaces/fsl/maths.py +++ b/nipype/interfaces/fsl/maths.py @@ -41,7 +41,7 @@ class MathsInput(FSLCommandInputSpec): class MathsOutput(TraitedSpec): - out_file = File(exists=True, desc="image written after calculations") + out_file = File(desc="image written after calculations") class MathsCommand(FSLCommand):