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):
2847
2847
2848
2848
out_file = File (
2849
2849
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
+ ),
2852
2854
argstr = "%s" ,
2853
2855
position = 1 ,
2854
2856
)
2855
2857
2856
2858
2857
2859
class 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" )
2862
2861
2863
2862
2864
2863
class Text2Vest (FSLCommand ):
@@ -2900,10 +2899,7 @@ class Vest2TextInputSpec(FSLCommandInputSpec):
2900
2899
2901
2900
2902
2901
class 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" )
2907
2903
2908
2904
2909
2905
class Vest2Text (FSLCommand ):
@@ -2924,4 +2920,4 @@ class Vest2Text(FSLCommand):
2924
2920
input_spec = Vest2TextInputSpec
2925
2921
output_spec = Vest2TextOutputSpec
2926
2922
2927
- _cmd = "Vest2Text"
2923
+ _cmd = "Vest2Text"
You can’t perform that action at this time.
0 commit comments