Skip to content

Commit 73897d6

Browse files
committed
one more simplification
1 parent a10a082 commit 73897d6

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

openml/runs/functions.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -451,12 +451,7 @@ def get_run(run_id):
451451
with io.open(run_file, "w", encoding='utf8') as fh:
452452
fh.write(run_xml)
453453

454-
try:
455-
run = _create_run_from_xml(run_xml)
456-
except Exception as e:
457-
# TODO logger.debug
458-
print("Run ID", run_id)
459-
raise e
454+
run = _create_run_from_xml(run_xml)
460455

461456
with io.open(run_file, "w", encoding='utf8') as fh:
462457
fh.write(run_xml)

0 commit comments

Comments
 (0)