From bfd7cb1ac3054764592bc97e663c3aa84e30ad36 Mon Sep 17 00:00:00 2001 From: haeussma <83341109+haeussma@users.noreply.github.com> Date: Fri, 25 Oct 2024 19:57:44 +0200 Subject: [PATCH] Fix debug print statement and update file path string formatting --- chromatopy/tools/analyzer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chromatopy/tools/analyzer.py b/chromatopy/tools/analyzer.py index 635a543..0d2fc74 100644 --- a/chromatopy/tools/analyzer.py +++ b/chromatopy/tools/analyzer.py @@ -510,7 +510,7 @@ def read_agilent( try: txt_path = next(directory.rglob("*.txt")) print("sole path: ", txt_path) - print(f"all txt paths: {list(directory.rglob("*.txt"))}") + print(f"all txt paths: {list(directory.rglob('*.txt'))}") print(f"everything: {directory.rglob('*')}") try: lines = AgilentRDLReader.read_file(str(txt_path))