@ In, output, "DataObjects" object, output where the results of the calculation needs to be stored
@ Out, None
if finishedJob.getEvaluation() == -1:
self.raiseAnError(RuntimeError,"Job " + finishedJob.identifier +" failed!")
out = finishedJob.getEvaluation()[1]
exportDict = {"inputSpaceParams":{},"outputSpaceParams":{},"metadata":{}}
exportDictTargetEvaluation = {}
outcomes, targetEvaluations, optionalOutputs = out
try:
After Change
@ In, output, "DataObjects" object, output where the results of the calculation needs to be stored
@ Out, None
evaluation = finishedJob.getEvaluation()
if isinstance(evaluation, Runners.Error):
self.raiseAnError(RuntimeError,"Job " + finishedJob.identifier +" failed!")
out = evaluation[1]
exportDict = {"inputSpaceParams":{},"outputSpaceParams":{},"metadata":{}}
exportDictTargetEvaluation = {}
outcomes, targetEvaluations, optionalOutputs = out
try: