Skip to content

Commit

Permalink
Merge pull request #123 from nipreps/fix/pacify-ruff
Browse files Browse the repository at this point in the history
MAINT: Pacify ruff
  • Loading branch information
oesteban authored Jul 1, 2024
2 parents 60fd854 + b4b65a9 commit 5b78e8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion nireports/reportlets/nuisance.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def plot_carpet(
)

label = ""
for i, (label, indices) in enumerate(segments.items()):
for i, (_, indices) in enumerate(segments.items()):
# Carpet plot
ax = plt.subplot(gs[i])

Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ select = [
]
ignore = [
"E203",
"B019",
"C901",
]

[tool.ruff.lint.flake8-quotes]
Expand Down

0 comments on commit 5b78e8d

Please sign in to comment.