Skip to content

Commit

Permalink
STY: 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

This rule is currently disabled because it conflicts with the formatter:
	astral-sh/ruff#8272
  • Loading branch information
DimitriPapadopoulos committed May 4, 2024
1 parent 07e438f commit 834cadf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nireports/interfaces/nuisance.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class _CompCorVariancePlotInputSpec(BaseInterfaceInputSpec):
metadata_files = traits.List(
File(exists=True),
mandatory=True,
desc="List of files containing component " "metadata",
desc="List of files containing component metadata",
)
metadata_sources = traits.List(
traits.Str,
Expand All @@ -51,7 +51,7 @@ class _CompCorVariancePlotInputSpec(BaseInterfaceInputSpec):
traits.Float(0.7),
traits.Float(0.9),
usedefault=True,
desc="Levels of explained variance to include in " "plot",
desc="Levels of explained variance to include in plot",
)
out_file = traits.Either(
None, File, value=None, usedefault=True, desc="Path to save plot"
Expand Down

0 comments on commit 834cadf

Please sign in to comment.