File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 99from pandas .errors import NoBufferPresent
1010from pandas .util ._decorators import cache_readonly
1111
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 (
1316 ArrowDtype ,
14- BaseMaskedDtype ,
1517 DatetimeTZDtype ,
1618)
17-
18- import pandas as pd
1919from pandas .api .types import is_string_dtype
2020from pandas .core .interchange .buffer import (
2121 PandasBuffer ,
Original file line number Diff line number Diff line change 1010
1111from pandas ._libs import lib
1212
13- from pandas . core . dtypes . dtypes import (
13+ from pandas import (
1414 ArrowDtype ,
15+ BooleanDtype ,
1516 CategoricalDtype ,
1617 DatetimeTZDtype ,
1718)
1819
19- from pandas .core .arrays .boolean import BooleanDtype
20-
2120if typing .TYPE_CHECKING :
2221 from pandas ._typing import DtypeObj
2322
You can’t perform that action at this time.
0 commit comments