@@ -174,9 +174,9 @@ def _list_outputs(self):
174
174
outputs = self .output_spec ().get ()
175
175
outputs ["out_file" ] = self ._gen_outfilename ()
176
176
177
- basename = os .path .basename (outputs [' out_file' ])
178
- cwd = os .path .dirname (outputs [' out_file' ])
179
- kwargs = {' basename' : basename , ' cwd' : cwd }
177
+ basename = os .path .basename (outputs [" out_file" ])
178
+ cwd = os .path .dirname (outputs [" out_file" ])
179
+ kwargs = {" basename" : basename , " cwd" : cwd }
180
180
181
181
if (isdefined (self .inputs .mesh ) and self .inputs .mesh ) or (
182
182
isdefined (self .inputs .surfaces ) and self .inputs .surfaces
@@ -189,9 +189,7 @@ def _list_outputs(self):
189
189
):
190
190
outputs ["mask_file" ] = self ._gen_fname (suffix = "_mask" , ** kwargs )
191
191
if isdefined (self .inputs .outline ) and self .inputs .outline :
192
- outputs ["outline_file" ] = self ._gen_fname (
193
- suffix = "_overlay" , ** kwargs
194
- )
192
+ outputs ["outline_file" ] = self ._gen_fname (suffix = "_overlay" , ** kwargs )
195
193
if isdefined (self .inputs .surfaces ) and self .inputs .surfaces :
196
194
outputs ["inskull_mask_file" ] = self ._gen_fname (
197
195
suffix = "_inskull_mask" , ** kwargs
@@ -211,13 +209,9 @@ def _list_outputs(self):
211
209
outputs ["outskin_mesh_file" ] = self ._gen_fname (
212
210
suffix = "_outskin_mesh" , ** kwargs
213
211
)
214
- outputs ["skull_mask_file" ] = self ._gen_fname (
215
- suffix = "_skull_mask" , ** kwargs
216
- )
212
+ outputs ["skull_mask_file" ] = self ._gen_fname (suffix = "_skull_mask" , ** kwargs )
217
213
if isdefined (self .inputs .skull ) and self .inputs .skull :
218
- outputs ["skull_file" ] = self ._gen_fname (
219
- suffix = "_skull" , ** kwargs
220
- )
214
+ outputs ["skull_file" ] = self ._gen_fname (suffix = "_skull" , ** kwargs )
221
215
if isdefined (self .inputs .no_output ) and self .inputs .no_output :
222
216
outputs ["out_file" ] = Undefined
223
217
return outputs
0 commit comments