From 3abc3d53eba47864839a9d51017aba9fb29f411a Mon Sep 17 00:00:00 2001 From: msolal Date: Thu, 30 Jan 2025 15:02:40 +0100 Subject: [PATCH] fix indent --- clinica/iotools/utils/data_handling/_missing.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/clinica/iotools/utils/data_handling/_missing.py b/clinica/iotools/utils/data_handling/_missing.py index 61495c2ad..93bda8018 100644 --- a/clinica/iotools/utils/data_handling/_missing.py +++ b/clinica/iotools/utils/data_handling/_missing.py @@ -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