From 9f84c32fb4f54743a55baae296d67c70601ed752 Mon Sep 17 00:00:00 2001 From: Alexandre de Siqueira Date: Mon, 29 Aug 2022 15:20:25 -0700 Subject: [PATCH] Add newline to output (#102) --- pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.py b/pipeline.py index fc2039e..7e249ff 100755 --- a/pipeline.py +++ b/pipeline.py @@ -128,7 +128,7 @@ def main(): axes = plotting.create_layout(len(pipeline_process), plot_level) image_name = os.path.basename(image_path) - print(f'Image {i+1}/{number_of_images} : {image_name}') + print(f'\nImage {i+1}/{number_of_images} : {image_name}') image_rgb = imread(image_path)