Skip to content

Commit 8cd6b76

Browse files
committed
isort precommit fix
1 parent a21bb60 commit 8cd6b76

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

pandas/core/arrays/sparse/array.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,16 @@
66
from collections import abc
77
import numbers
88
import operator
9-
from typing import Any, Callable, Optional, Sequence, Type, TypeVar, Union, cast
9+
from typing import (
10+
Any,
11+
Callable,
12+
Optional,
13+
Sequence,
14+
Type,
15+
TypeVar,
16+
Union,
17+
cast,
18+
)
1019
import warnings
1120

1221
import numpy as np

pandas/core/dtypes/base.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,16 @@
44

55
from __future__ import annotations
66

7-
from typing import TYPE_CHECKING, Any, List, Optional, Tuple, Type, Union, cast
7+
from typing import (
8+
TYPE_CHECKING,
9+
Any,
10+
List,
11+
Optional,
12+
Tuple,
13+
Type,
14+
Union,
15+
cast,
16+
)
817

918
import numpy as np
1019

0 commit comments

Comments
 (0)