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 28c289f commit 6a17a48Copy full SHA for 6a17a48
1 file changed
openml/runs/run.py
@@ -460,7 +460,7 @@ def _create_description_xml(self):
460
description_xml = xmltodict.unparse(description, pretty=True)
461
return description_xml
462
463
- def push_tag(self, tag):
+ def push_tag(self, tag: str) -> None:
464
"""Annotates this run with a tag on the server.
465
466
Parameters
@@ -471,7 +471,7 @@ def push_tag(self, tag):
471
data = {'run_id': self.run_id, 'tag': tag}
472
openml._api_calls._perform_api_call("/run/tag", 'post', data=data)
473
474
- def remove_tag(self, tag):
+ def remove_tag(self, tag: str) -> None:
475
"""Removes a tag from this run on the server.
476
477
0 commit comments