Skip to content

Commit fa88084

Browse files
mvdbeeknsoranzo
andauthored
tweak method
Co-authored-by: Nicola Soranzo <[email protected]>
1 parent 48b0dfe commit fa88084

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/galaxy/model/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2036,14 +2036,13 @@ def get_param_values(self, app, ignore_errors=False):
20362036
Read encoded parameter values from the database and turn back into a
20372037
dict of tool parameter values.
20382038
"""
2039-
param_dict = self.raw_param_dict()
20402039
tool = app.toolbox.get_tool(
20412040
self.tool_id,
20422041
tool_version=self.tool_version,
20432042
tool_uuid=self.dynamic_tool and self.dynamic_tool.uuid,
20442043
user=self.user,
20452044
)
2046-
param_dict = tool.params_from_strings(param_dict, app, ignore_errors=ignore_errors)
2045+
param_dict = tool.get_param_values(self, ignore_errors=ignore_errors)
20472046
return param_dict
20482047

20492048
def raw_param_dict(self):

0 commit comments

Comments
 (0)