File tree Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -2847,18 +2847,17 @@ class Text2VestInputSpec(FSLCommandInputSpec):
28472847
28482848 out_file = File (
28492849 mandatory = True ,
2850- desc = ("file name to store matrix data in the format used by FSL tools"
2851- " (e.g., design.mat, design.con design.fts)" ),
2850+ desc = (
2851+ "file name to store matrix data in the format used by FSL tools"
2852+ " (e.g., design.mat, design.con design.fts)"
2853+ ),
28522854 argstr = "%s" ,
28532855 position = 1 ,
28542856 )
28552857
28562858
28572859class Text2VestOutputSpec (TraitedSpec ):
2858- out_file = File (
2859- exists = True ,
2860- desc = "matrix data in the format used by FSL tools"
2861- )
2860+ out_file = File (exists = True , desc = "matrix data in the format used by FSL tools" )
28622861
28632862
28642863class Text2Vest (FSLCommand ):
@@ -2900,10 +2899,7 @@ class Vest2TextInputSpec(FSLCommandInputSpec):
29002899
29012900
29022901class Vest2TextOutputSpec (TraitedSpec ):
2903- out_file = File (
2904- exists = True ,
2905- desc = "plain text representation of FSL matrix"
2906- )
2902+ out_file = File (exists = True , desc = "plain text representation of FSL matrix" )
29072903
29082904
29092905class Vest2Text (FSLCommand ):
@@ -2924,4 +2920,4 @@ class Vest2Text(FSLCommand):
29242920 input_spec = Vest2TextInputSpec
29252921 output_spec = Vest2TextOutputSpec
29262922
2927- _cmd = "Vest2Text"
2923+ _cmd = "Vest2Text"
You can’t perform that action at this time.
0 commit comments