File tree 2 files changed +6
-7
lines changed
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 9
9
from pandas .errors import NoBufferPresent
10
10
from pandas .util ._decorators import cache_readonly
11
11
12
- from pandas .core .dtypes .dtypes import (
12
+ from pandas .core .dtypes .dtypes import BaseMaskedDtype
13
+
14
+ import pandas as pd
15
+ from pandas import (
13
16
ArrowDtype ,
14
- BaseMaskedDtype ,
15
17
DatetimeTZDtype ,
16
18
)
17
-
18
- import pandas as pd
19
19
from pandas .api .types import is_string_dtype
20
20
from pandas .core .interchange .buffer import (
21
21
PandasBuffer ,
Original file line number Diff line number Diff line change 10
10
11
11
from pandas ._libs import lib
12
12
13
- from pandas . core . dtypes . dtypes import (
13
+ from pandas import (
14
14
ArrowDtype ,
15
+ BooleanDtype ,
15
16
CategoricalDtype ,
16
17
DatetimeTZDtype ,
17
18
)
18
19
19
- from pandas .core .arrays .boolean import BooleanDtype
20
-
21
20
if typing .TYPE_CHECKING :
22
21
from pandas ._typing import DtypeObj
23
22
You can’t perform that action at this time.
0 commit comments