Skip to content

Commit

Permalink
Apply ruff/flake8-implicit-str-concat rule ISC001
Browse files Browse the repository at this point in the history
ISC001 Implicitly concatenated string literals on one line
  • Loading branch information
DimitriPapadopoulos committed Nov 23, 2024
1 parent 2a32a26 commit 58fbf88
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .maint/update_authors.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def zenodo(
misses = set(miss_creators).intersection(miss_contributors)
if misses:
print(
"Some people made commits, but are missing in .maint/ " f"files: {', '.join(misses)}",
f"Some people made commits, but are missing in .maint/ files: {', '.join(misses)}",
file=sys.stderr,
)

Expand Down Expand Up @@ -268,7 +268,7 @@ def _aslist(value):

if misses:
print(
"Some people made commits, but are missing in .maint/ " f"files: {', '.join(misses)}",
f"Some people made commits, but are missing in .maint/ files: {', '.join(misses)}",
file=sys.stderr,
)

Expand Down
2 changes: 1 addition & 1 deletion nireports/interfaces/nuisance.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class _ConfoundsCorrelationPlotInputSpec(BaseInterfaceInputSpec):
ignore_initial_volumes = traits.Int(
0,
usedefault=True,
desc="Number of non-steady-state volumes at the beginning of the scan " "to ignore.",
desc="Number of non-steady-state volumes at the beginning of the scan to ignore.",
)


Expand Down
4 changes: 2 additions & 2 deletions nireports/interfaces/reporting/segmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class _MELODICInputSpecRPT(nrb._SVGReportCapableInputSpec, fsl.model.MELODICInpu
out_report = File(
"melodic_reportlet.svg",
usedefault=True,
desc="Filename for the visual" " report generated " "by Nipype.",
desc="Filename for the visual report generated by Nipype.",
)
report_mask = File(
desc="Mask used to draw the outline on the reportlet. "
Expand Down Expand Up @@ -187,7 +187,7 @@ class _ICA_AROMAInputSpecRPT(nrb._SVGReportCapableInputSpec, fsl.aroma.ICA_AROMA
out_report = File(
"ica_aroma_reportlet.svg",
usedefault=True,
desc="Filename for the visual" " report generated " "by Nipype.",
desc="Filename for the visual report generated by Nipype.",
)
report_mask = File(
desc="Mask used to draw the outline on the reportlet. "
Expand Down

0 comments on commit 58fbf88

Please sign in to comment.