Skip to content

Commit ba4036b

Browse files
committed
sty: white spaces
1 parent 3935f6d commit ba4036b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nipype/interfaces/afni/base.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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+
102102
class AFNICommandOutputSpec(TraitedSpec):
103103
out_file = File(desc='output file',
104104
exists=True)
105105

106106

107107
class 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

0 commit comments

Comments
 (0)