diff options
author | Alexander Kabui | 2022-01-30 15:40:09 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-02-02 10:59:34 +0300 |
commit | 6cc18925338a5acac18d8a31d651d0cade15a015 (patch) | |
tree | 4978496879e7415bbd49de7b377143088863c39e /gn3/computations | |
parent | d1ee344e43ae210ca2eb34999035e13786466ca1 (diff) | |
download | genenetwork3-6cc18925338a5acac18d8a31d651d0cade15a015.tar.gz |
fix comprehension list
Diffstat (limited to 'gn3/computations')
-rw-r--r-- | gn3/computations/ctl.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |