Skip to content

Commit f2adf46

Browse files
committed
Merge remote-tracking branch 'openml/develop' into develop
2 parents 6a1561f + a2d0bc6 commit f2adf46

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

openml/runs/run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ def publish(self):
7979
"""
8080
predictions = arff.dumps(self._generate_arff())
8181
description_xml = self._create_description_xml()
82-
data = {'predictions': predictions, 'description':
83-
description_xml}
82+
data = {'predictions': ("predictions.csv", predictions),
83+
'description': ("description.xml", description_xml)}
8484
return_code, return_value = _perform_api_call(
8585
"/run/", file_elements=data)
8686
return return_code, return_value

0 commit comments

Comments
 (0)