Skip to content

Commit ee143e8

Browse files
committed
Switch single and double quotes.
1 parent cb41c0e commit ee143e8

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

nipype/interfaces/afni/preprocess.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3013,26 +3013,26 @@ class QualityIndex(CommandLine):
30133013

30143014

30153015
class NotesInputSpec(AFNICommandInputSpec):
3016-
in_file = File(desc='input file to 3dNotes',
3017-
argstr='%s',
3016+
in_file = File(desc="input file to 3dNotes",
3017+
argstr="%s",
30183018
position=-1,
30193019
mandatory=True,
30203020
exists=True,
30213021
copyfile=False)
3022-
add = traits.Str(desc='note to add',
3023-
argstr='-a "%s"')
3024-
add_history = traits.Str(desc='note to add to history',
3025-
argstr='-h "%s"',
3026-
xor=['rep_history'])
3027-
rep_history = traits.Str(desc='note with which to replace history',
3028-
argstr='-HH "%s"',
3029-
xor=['add_history'])
3030-
delete = traits.Int(desc='delete note number num',
3031-
argstr='-d %d')
3032-
ses = traits.Bool(desc='print to stdout the expanded notes',
3033-
argstr='-ses')
3034-
out_file = File(desc='output image file name',
3035-
argstr='%s')
3022+
add = traits.Str(desc="note to add",
3023+
argstr="-a '%s'")
3024+
add_history = traits.Str(desc="note to add to history",
3025+
argstr="-h '%s'",
3026+
xor=["rep_history"])
3027+
rep_history = traits.Str(desc="note with which to replace history",
3028+
argstr="-HH '%s'",
3029+
xor=["add_history"])
3030+
delete = traits.Int(desc="delete note number num",
3031+
argstr="-d %d")
3032+
ses = traits.Bool(desc="print to stdout the expanded notes",
3033+
argstr="-ses")
3034+
out_file = File(desc="output image file name",
3035+
argstr="%s")
30363036

30373037

30383038
class Notes(CommandLine):

0 commit comments

Comments
 (0)