Merge pull request #16183 from guerler/tool_warnings_type_error

[23.0] Tool warnings can either be None or a Dictionary but not a String
This commit is contained in:
Marius van den Beek
2023-06-04 11:32:21 +02:00
committed by GitHub
+1 -1
View File
@@ -2430,7 +2430,7 @@ class Tool(Dictifiable):
# load job parameters into incoming
tool_message = ""
tool_warnings = ""
tool_warnings = None
if job:
try:
job_params = job.get_param_values(self.app, ignore_errors=True)