From 55b5632bb8920b3959ca9f43325264346960214c Mon Sep 17 00:00:00 2001 From: Jean-Marie Mineau Date: Tue, 13 May 2025 18:05:59 +0200 Subject: [PATCH] wip --- experiment/orchestrator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/experiment/orchestrator.py b/experiment/orchestrator.py index 54e1a6b..ccaeb9a 100644 --- a/experiment/orchestrator.py +++ b/experiment/orchestrator.py @@ -189,7 +189,7 @@ def main(): ) args = parser.parse_args() with args.applist.open("r") as fp: - apklist = fp.readlines() + apklist = list(map(str.strip, fp.readlines())) run(apklist, args.out_folder, args.analysis_script)