Skip to content

Commit

Permalink
Fix typo (input_item/output_item)
Browse files Browse the repository at this point in the history
  • Loading branch information
eudoxos committed Nov 26, 2024
1 parent cfd9436 commit a799165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mupifDB/api/client_mupif.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def setExecutionInputObject(weid, name, obj_id, object_dict):

# TODO: validate input
def setExecutionOutputObject(weid, name, obj_id, object_dict):
return rPatch(f"executions/{weid}/input_item/{name}/{obj_id}/", data=json.dumps({"object": object_dict}))
return rPatch(f"executions/{weid}/output_item/{name}/{obj_id}/", data=json.dumps({"object": object_dict}))

def getPropertyArrayData(file_id, i_start, i_count): # may not be used
return rGet(f"property_array_data/{file_id}/{i_start}/{i_count}/")
Expand Down

0 comments on commit a799165

Please sign in to comment.