Skip to content

Commit 06991af

Browse files
committed
black
1 parent 7e57a68 commit 06991af

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

nipype/interfaces/fsl/utils.py

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff 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

28572859
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")
28622861

28632862

28642863
class Text2Vest(FSLCommand):
@@ -2900,10 +2899,7 @@ class Vest2TextInputSpec(FSLCommandInputSpec):
29002899

29012900

29022901
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")
29072903

29082904

29092905
class Vest2Text(FSLCommand):
@@ -2924,4 +2920,4 @@ class Vest2Text(FSLCommand):
29242920
input_spec = Vest2TextInputSpec
29252921
output_spec = Vest2TextOutputSpec
29262922

2927-
_cmd = "Vest2Text"
2923+
_cmd = "Vest2Text"

0 commit comments

Comments
 (0)