From 0bfcbf0276e51ce3b1cf4fbe3cc2aa090203501a Mon Sep 17 00:00:00 2001 From: jungheejung Date: Wed, 18 Sep 2024 17:10:35 -0700 Subject: [PATCH] STY: format print style --- spacetop_prep/datalad/identify_shorterTR.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spacetop_prep/datalad/identify_shorterTR.py b/spacetop_prep/datalad/identify_shorterTR.py index d6bda39..9336031 100644 --- a/spacetop_prep/datalad/identify_shorterTR.py +++ b/spacetop_prep/datalad/identify_shorterTR.py @@ -95,12 +95,12 @@ def check_dcmmeta_shape(file_path, task_run_combination): # After processing all files, print the results if shorter_files: - print("Files with shorter dcmmeta_shape:\n") + print("\nFiles with shorter dcmmeta_shape:") for file in shorter_files: print(file) if longer_files: - print("Files with longer dcmmeta_shape:\n") + print("\nFiles with longer dcmmeta_shape:") for file in longer_files: print(file)