Skip to content
Prev Previous commit
Next Next commit
type annotate
  • Loading branch information
sahithyaravi committed Jul 22, 2020
commit e02597d476ce0d9ea870851b3f0dbad0c1d41d37
2 changes: 1 addition & 1 deletion openml/datasets/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ def edit_dataset(
# case 2, changing any of these fields will update existing dataset
# compose data edit parameters as xml
form_data = {"data_id": data_id}
xml = OrderedDict()
xml = OrderedDict() # type: 'OrderedDict[str, OrderedDict]'
xml["oml:data_edit_parameters"] = OrderedDict()
xml["oml:data_edit_parameters"]["@xmlns:oml"] = "http://openml.org/openml"
xml["oml:data_edit_parameters"]["oml:description"] = description
Expand Down