From cee6a76763e1d39cc317ad66e09e1630d2e81bc2 Mon Sep 17 00:00:00 2001 From: John Chilton Date: Fri, 27 Sep 2024 17:20:04 -0400 Subject: [PATCH] This needs to be there. --- lib/galaxy/tools/parameters/basic.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/galaxy/tools/parameters/basic.py b/lib/galaxy/tools/parameters/basic.py index 2dc6e01dcfdb..0bd4509372f2 100644 --- a/lib/galaxy/tools/parameters/basic.py +++ b/lib/galaxy/tools/parameters/basic.py @@ -1814,6 +1814,9 @@ def get_option_display(value, options): return "\n".join(map(str, rval)) return "Nothing selected." + def get_dependencies(self): + return [] + def to_dict(self, trans, other_values=None): other_values = other_values or {} # skip SelectToolParameter (the immediate parent) bc we need to get options in a different way here