Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
msolal committed Jan 30, 2025
1 parent ea3ed69 commit 3abc3d5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions clinica/iotools/utils/data_handling/_missing.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,11 +260,11 @@ def _compute_missing_processing_single_row(
row = _compute_missing_processing_t1_volume(row, groups, subject)
for pipeline in ("t1-linear", "flair_linear"):
row.loc[0, pipeline] = "1" if (subject.session_path / pipeline).exists() else "0"
row.loc[0, "t1-freesurfer"] = (
"1"
if (subject.session_path / "t1" / "freesurfer_cross_sectional").exists()
else "0"
)
row.loc[0, "t1-freesurfer"] = (
"1"
if (subject.session_path / "t1" / "freesurfer_cross_sectional").exists()
else "0"
)

row = _compute_missing_processing_pet_volume(
row, groups, tracers, subject.session_path
Expand Down

0 comments on commit 3abc3d5

Please sign in to comment.