Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Progress codespell forward, fixup typos it detects #1362

Merged
merged 4 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
args: [ --fix ]
- id: ruff-format
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.3.0
hooks:
- id: codespell
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion clinica/pipelines/dwi/preprocessing/t1/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def epi_pipeline(
(
inputnode,
ants_registration,
[(inpt, f"inputnode.{inpt}") for inpt in workflow_inputs],
[(i, f"inputnode.{i}") for i in workflow_inputs],
),
(
inputnode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ def largest_eigenvalue_heat_3D_tensor2(g, h, epsilon: float = 1e-6):
:param g: metric tensor
:param h: space step
:param epsilon: stop criterion (default: 1e-6)
:return: lamba = the largest eigenvalues
:return: lambda = the largest eigenvalues

"""
import cmath
Expand Down
Loading