We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaf8f4b commit ebbc5b1Copy full SHA for ebbc5b1
1 file changed
lib/galaxy/model/__init__.py
@@ -130,6 +130,7 @@
130
from sqlalchemy.orm.session import Session
131
from sqlalchemy.sql.expression import FromClause
132
from typing_extensions import (
133
+ deprecated,
134
Literal,
135
NotRequired,
136
Protocol,
@@ -2031,6 +2032,7 @@ def set_state(self, state: JobState) -> bool:
2031
2032
self.state_history.append(JobStateHistory(self))
2033
return True
2034
2035
+ @deprecated("Use tool.get_param_values(job) instead")
2036
def get_param_values(self, app, ignore_errors=False):
2037
"""
2038
Read encoded parameter values from the database and turn back into a
0 commit comments