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 176002c commit 0178ee0Copy full SHA for 0178ee0
1 file changed
openml/_api/resources/run.py
@@ -46,7 +46,6 @@ def get(
46
path,
47
enable_cache=True,
48
refresh_cache=reset_cache,
49
- use_api_key=True,
50
)
51
xml_content = response.text
52
return openml.runs.functions._create_run_from_xml(xml_content)
@@ -117,7 +116,7 @@ def list( # type: ignore[valid-type] # noqa: PLR0913
117
116
display_errors=display_errors,
118
task_type=task_type,
119
120
- xml_string = self._http.get(path, use_api_key=True).text
+ xml_string = self._http.get(path).text
121
return self._parse_list_xml(xml_string)
122
123
def _build_url( # noqa: PLR0913, C901
0 commit comments