From 6cc18925338a5acac18d8a31d651d0cade15a015 Mon Sep 17 00:00:00 2001 From: Alexander Kabui Date: Sun, 30 Jan 2022 15:40:09 +0300 Subject: fix comprehension list --- gn3/computations/ctl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gn3/computations') diff --git a/gn3/computations/ctl.py b/gn3/computations/ctl.py index 0dec3c4..d11b691 100644 --- a/gn3/computations/ctl.py +++ b/gn3/computations/ctl.py @@ -27,7 +27,7 @@ def call_ctl_script(data): output_file_data["image_loc"]).decode("ascii") output_file_data["ctl_plots"] = [process_image(ctl_plot).decode("ascii") for - clt_plot in output_file_data["ctl_plots"]] + ctl_plot in output_file_data["ctl_plots"]] return output_file_data -- cgit v1.2.3