File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -98,14 +98,14 @@ class AFNICommandInputSpec(CommandLineInputSpec):
9898 out_file = File (name_template = "%s_afni" , desc = 'output image file name' ,
9999 argstr = '-prefix %s' ,
100100 name_source = ["in_file" ])
101-
101+
102102class AFNICommandOutputSpec (TraitedSpec ):
103103 out_file = File (desc = 'output file' ,
104104 exists = True )
105105
106106
107107class AFNICommand (CommandLine ):
108-
108+
109109 input_spec = AFNICommandInputSpec
110110 _outputtype = None
111111
@@ -143,7 +143,7 @@ def set_default_output_type(cls, outputtype):
143143 cls ._outputtype = outputtype
144144 else :
145145 raise AttributeError ('Invalid AFNI outputtype: %s' % outputtype )
146-
146+
147147 def _overload_extension (self , value ):
148148 path , base , _ = split_filename (value )
149149 return os .path .join (path , base + Info .outputtype_to_ext (self .inputs .outputtype ))
@@ -157,5 +157,5 @@ def _list_outputs(self):
157157 if outputs [name ]:
158158 _ ,_ ,ext = split_filename (outputs [name ])
159159 if ext == "" :
160- outputs [name ] = outputs [name ] + "+orig.BRIK"
160+ outputs [name ] = outputs [name ] + "+orig.BRIK"
161161 return outputs
You can’t perform that action at this time.
0 commit comments