Skip to content

Commit

Permalink
Merge branch 'master' into musicode
Browse files Browse the repository at this point in the history
  • Loading branch information
eudoxos committed Dec 19, 2023
2 parents f3cd076 + 4650ac3 commit 0d28a5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mupifDB/workflowmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1073,9 +1073,9 @@ def _getGrantaOutput(app, eid, name, obj_id, data_id, time, object_type):
obj = app.get(mupif.DataID[data_id], time, obj_id)
return {
"name": str(name),
"value": {"x": obj.x, "y": obj.y},
"value": {"x": obj.x.value, "y": obj.y.value},
"type": "series",
"unit": str(obj.y_unit)
"unit": str(obj.unit)
}

return None
Expand Down

0 comments on commit 0d28a5e

Please sign in to comment.