We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07f4461 commit 33ca852Copy full SHA for 33ca852
1 file changed
openml/evaluations/functions.py
@@ -231,9 +231,9 @@ def __list_evaluations(api_call: str) -> list[OpenMLEvaluation]:
231
f'Error in return XML, does not contain "oml:evaluations": {evals_dict!s}',
232
)
233
234
- assert isinstance(
235
- evals_dict["oml:evaluations"]["oml:evaluation"], list
236
- ), "Expected 'oml:evaluation' to be a list, but got"
+ assert isinstance(evals_dict["oml:evaluations"]["oml:evaluation"], list), (
+ "Expected 'oml:evaluation' to be a list, but got"
+ )
237
f"{type(evals_dict['oml:evaluations']['oml:evaluation']).__name__}. "
238
239
uploader_ids = list(
0 commit comments