From fc1998c2e748131df19f9acd9f44fa64c6118447 Mon Sep 17 00:00:00 2001 From: haeussma <83341109+haeussma@users.noreply.github.com> Date: Fri, 25 Oct 2024 20:50:58 +0200 Subject: [PATCH] Refactor debug print statements and flush output in analyzer.py --- chromatopy/tools/analyzer.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/chromatopy/tools/analyzer.py b/chromatopy/tools/analyzer.py index 20455f3..cba21bb 100644 --- a/chromatopy/tools/analyzer.py +++ b/chromatopy/tools/analyzer.py @@ -538,6 +538,11 @@ def read_agilent( "silent": silent, "mode": mode, } + + print("txt_paths: ", txt_paths, flush=True) + print("csv_paths: ", csv_paths, flush=True) + print("rdl_paths: ", rdl_paths, flush=True) + if rdl_paths: data["file_paths"] = rdl_paths # type: ignore reader = AgilentRDLReader(**data)