File tree 7 files changed +8
-8
lines changed 7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -478,13 +478,13 @@ def _run_interface(self, runtime):
478
478
479
479
if np .any (refdata > 1.0 ):
480
480
iflogger .warning (
481
- 'Values greater than 1.0 found in "in_ref" input, ' " scaling values."
481
+ 'Values greater than 1.0 found in "in_ref" input, scaling values.'
482
482
)
483
483
refdata /= refdata .max ()
484
484
485
485
if np .any (tstdata > 1.0 ):
486
486
iflogger .warning (
487
- 'Values greater than 1.0 found in "in_tst" input, ' " scaling values."
487
+ 'Values greater than 1.0 found in "in_tst" input, scaling values.'
488
488
)
489
489
tstdata /= tstdata .max ()
490
490
Original file line number Diff line number Diff line change @@ -668,7 +668,7 @@ def _run_interface(self, runtime):
668
668
669
669
if isdefined (self .inputs .row_headings ):
670
670
iflogger .info (
671
- 'Row headings have been provided. Adding "labels"' " column header."
671
+ 'Row headings have been provided. Adding "labels" column header.'
672
672
)
673
673
prefix = f'"{ self .inputs .row_heading_title } ","'
674
674
csv_headings = prefix + '","' .join (itertools .chain (headings )) + '"\n '
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class ImageStatsInputSpec(CommandLineInputSpec):
46
46
"double" ,
47
47
argstr = "-outputdatatype %s" ,
48
48
usedefault = True ,
49
- desc = ('A Camino data type string, default is "float". ' " Type must be signed." ),
49
+ desc = ('A Camino data type string, default is "float". Type must be signed.' ),
50
50
)
51
51
output_root = File (
52
52
argstr = "-outputroot %s" ,
Original file line number Diff line number Diff line change @@ -941,7 +941,7 @@ class ProbTrackX2InputSpec(ProbTrackXBaseInputSpec):
941
941
"OR" ,
942
942
"AND" ,
943
943
argstr = "--waycond=%s" ,
944
- desc = ('Waypoint condition. Either "AND" (default) ' ' or "OR"' ),
944
+ desc = ('Waypoint condition. Either "AND" (default) or "OR"' ),
945
945
)
946
946
wayorder = traits .Bool (
947
947
desc = (
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ def clone(self, name):
87
87
88
88
"""
89
89
if name == self .name :
90
- raise ValueError ('Cloning requires a new name, "%s" is ' " in use." % name )
90
+ raise ValueError ('Cloning requires a new name, "%s" is in use.' % name )
91
91
clone = deepcopy (self )
92
92
clone .name = name
93
93
if hasattr (clone , "_id" ):
Original file line number Diff line number Diff line change @@ -1049,7 +1049,7 @@ def _get_dot(
1049
1049
else :
1050
1050
if colored :
1051
1051
dotlist .append (
1052
- ('%s[label="%s", style=filled,' ' fillcolor="%s"];' )
1052
+ ('%s[label="%s", style=filled, fillcolor="%s"];' )
1053
1053
% (nodename , node_class_name , colorset [level ])
1054
1054
)
1055
1055
else :
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ def make_link_targets(
129
129
have_gh_url = True
130
130
if not have_url or not have_ml_url :
131
131
raise RuntimeError (
132
- "Need command line or known project " " and / or mailing list URLs"
132
+ "Need command line or known project and / or mailing list URLs"
133
133
)
134
134
lines = []
135
135
if url is not None :
You can’t perform that action at this time.
0 commit comments