Skip to content

Commit 2480e25

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f8165ee commit 2480e25

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

openml/utils.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,17 @@
66
import shutil
77
import warnings
88
from abc import ABC, abstractmethod
9+
from collections.abc import Callable, Iterable, Mapping, Sequence, Sized
910
from functools import wraps
1011
from pathlib import Path
1112
from typing import (
1213
TYPE_CHECKING,
1314
Any,
14-
Callable,
15-
Iterable,
16-
Mapping,
17-
Sequence,
18-
Sized,
15+
Literal,
1916
TypeVar,
2017
overload,
2118
)
22-
from typing_extensions import Literal, ParamSpec
19+
from typing_extensions import ParamSpec
2320

2421
import numpy as np
2522
import xmltodict

0 commit comments

Comments
 (0)