File tree Expand file tree Collapse file tree 3 files changed +4
-12
lines changed
Expand file tree Collapse file tree 3 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -62,15 +62,11 @@ from pandas.core.api import (
6262 timedelta_range as timedelta_range ,
6363 to_datetime as to_datetime ,
6464 to_numeric as to_numeric ,
65+ to_timedelta as to_timedelta ,
6566 unique as unique ,
6667)
67- from pandas .core .api import (
68- to_timedelta as to_timedelta , # pyright: ignore[reportUnknownVariableType]
69- )
7068from pandas .core .arrays .sparse import SparseDtype as SparseDtype
71- from pandas .core .computation .api import (
72- eval as eval , # pyright: ignore[reportUnknownVariableType]
73- )
69+ from pandas .core .computation .api import eval as eval
7470from pandas .core .reshape .api import (
7571 concat as concat ,
7672 from_dummies as from_dummies ,
Original file line number Diff line number Diff line change @@ -51,9 +51,7 @@ from pandas.core.indexing import IndexSlice as IndexSlice
5151from pandas .core .series import Series as Series
5252from pandas .core .tools .datetimes import to_datetime as to_datetime
5353from pandas .core .tools .numeric import to_numeric as to_numeric
54- from pandas .core .tools .timedeltas import (
55- to_timedelta as to_timedelta , # pyright: ignore[reportUnknownVariableType]
56- )
54+ from pandas .core .tools .timedeltas import to_timedelta as to_timedelta
5755
5856from pandas ._libs import (
5957 NaT as NaT ,
Original file line number Diff line number Diff line change 1- from pandas .core .computation .eval import (
2- eval as eval , # pyright: ignore[reportUnknownVariableType]
3- )
1+ from pandas .core .computation .eval import eval as eval
You can’t perform that action at this time.
0 commit comments