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 11089bd commit 429f451Copy full SHA for 429f451
1 file changed
tests/test_runs/test_run_functions.py
@@ -67,7 +67,7 @@ def _check_serialized_optimized_run(self, run_id):
67
try:
68
model_prime = openml.runs.initialize_model_from_trace(run_id, 0, 0)
69
except openml.exceptions.OpenMLServerException as e:
70
- e.additional += '; run_id: ' + str(run_id)
+ e.additional = str(e.additional) + '; run_id: ' + str(run_id)
71
raise e
72
73
run_prime = openml.runs.run_model_on_task(task, model_prime,
0 commit comments