Skip to content

Commit a151ca7

Browse files
committed
Renamed: "fme" -> "ref"
(to fix compatibility with latest changes in DSS)
1 parent 1f82cf6 commit a151ca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dataikuapi/dss/modelevaluationstore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def list_model_evaluations(self, as_type=None):
119119
"""
120120
items = self.client._perform_json("GET", "/projects/%s/modelevaluationstores/%s/runs/" % (self.project_key, self.mes_id))
121121
if as_type == "objects" or as_type == "object":
122-
return [DSSModelEvaluation(self, item["fme"]["runId"]) for item in items]
122+
return [DSSModelEvaluation(self, item["ref"]["runId"]) for item in items]
123123
else:
124124
return items
125125

0 commit comments

Comments
 (0)