We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c36e1cf commit b41a9c9Copy full SHA for b41a9c9
faculty/experiment.py
@@ -109,7 +109,8 @@ def _get_runs():
109
client = ExperimentClient(session)
110
111
response = client.query_runs(project_id, filter, sort)
112
- yield from map(cls._from_client_model, response.runs)
+ for run in response.runs:
113
+ yield cls._from_client_model(run)
114
115
while response.pagination.next is not None:
116
response = client.query_runs(
@@ -119,7 +120,8 @@ def _get_runs():
119
120
start=response.pagination.next.start,
121
limit=response.pagination.next.limit,
122
)
123
124
125
126
return ExperimentRunList(_get_runs())
127
0 commit comments