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 c2b9e1a commit 056cf3aCopy full SHA for 056cf3a
2 files changed
openml/_api/resources/base.py
@@ -4,7 +4,6 @@
4
from typing import TYPE_CHECKING, Any
5
6
if TYPE_CHECKING:
7
- from build.lib.openml.tasks.task import TaskType
8
from requests import Response
9
10
from openml._api.http import HTTPClient
@@ -28,7 +27,7 @@ class TasksAPI(ResourceAPI, ABC):
28
27
def get(
29
self,
30
task_id: int,
31
- download_splits: bool = False, # noqa: FBT001, FBT002
+ download_splits: bool = False, # noqa: FBT001, FBT002
32
**get_dataset_kwargs: Any,
33
) -> OpenMLTask:
34
"""
openml/tasks/task.py
@@ -8,7 +8,6 @@
from enum import Enum
from pathlib import Path
from typing import TYPE_CHECKING, Any, Sequence
11
-from attr import dataclass
12
from typing_extensions import TypedDict
13
14
import openml._api_calls
0 commit comments