From 724c83f16a533dd85d0cfdc86c239f94e6b88377 Mon Sep 17 00:00:00 2001 From: Wolfgang Maier Date: Tue, 24 Sep 2024 11:27:09 +0200 Subject: [PATCH] Fix typo --- lib/galaxy/tools/parameters/basic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy/tools/parameters/basic.py b/lib/galaxy/tools/parameters/basic.py index 31eb54953175..f017f0e69bcf 100644 --- a/lib/galaxy/tools/parameters/basic.py +++ b/lib/galaxy/tools/parameters/basic.py @@ -1529,7 +1529,7 @@ def get_options(self, trans, other_values): with open(dataset.get_file_name()) as f: head = f.readline() cnames = head.rstrip("\n\r ").split("\t") - options = [("c%s: %s" % (c, cnames[int(c) - 1]), c, False) for i in column_list] + options = [("c%s: %s" % (c, cnames[int(c) - 1]), c, False) for c in column_list] except Exception: # ignore and rely on fallback pass