@@ -61,15 +61,17 @@ from pandas.core.api import (
6161 timedelta_range as timedelta_range ,
6262 to_datetime as to_datetime ,
6363 to_numeric as to_numeric ,
64- to_timedelta as to_timedelta ,
6564 unique as unique ,
6665)
66+ from pandas .core .api import (
67+ to_timedelta as to_timedelta , # pyright: ignore[reportUnknownVariableType]
68+ )
6769from pandas .core .arrays .sparse import SparseDtype as SparseDtype
68- from pandas .core .computation .api import eval as eval
70+ from pandas .core .computation .api import (
71+ eval as eval , # pyright: ignore[reportUnknownVariableType]
72+ )
6973from pandas .core .reshape .api import (
7074 concat as concat ,
71- crosstab as crosstab ,
72- cut as cut ,
7375 from_dummies as from_dummies ,
7476 get_dummies as get_dummies ,
7577 lreshape as lreshape ,
@@ -78,10 +80,18 @@ from pandas.core.reshape.api import (
7880 merge_asof as merge_asof ,
7981 merge_ordered as merge_ordered ,
8082 pivot as pivot ,
81- pivot_table as pivot_table ,
8283 qcut as qcut ,
8384 wide_to_long as wide_to_long ,
8485)
86+ from pandas .core .reshape .api import (
87+ crosstab as crosstab , # pyright: ignore[reportUnknownVariableType]
88+ )
89+ from pandas .core .reshape .api import (
90+ cut as cut , # pyright: ignore[reportUnknownVariableType]
91+ )
92+ from pandas .core .reshape .api import (
93+ pivot_table as pivot_table , # pyright: ignore[reportUnknownVariableType]
94+ )
8595
8696from pandas ._config import (
8797 describe_option as describe_option ,
@@ -98,27 +108,49 @@ from pandas.io.api import (
98108 ExcelFile as ExcelFile ,
99109 ExcelWriter as ExcelWriter ,
100110 HDFStore as HDFStore ,
101- read_clipboard as read_clipboard ,
102- read_csv as read_csv ,
103- read_excel as read_excel ,
104111 read_feather as read_feather ,
105112 read_fwf as read_fwf ,
106113 read_hdf as read_hdf ,
107- read_html as read_html ,
108114 read_json as read_json ,
109- read_orc as read_orc ,
110- read_parquet as read_parquet ,
111115 read_pickle as read_pickle ,
112116 read_sas as read_sas ,
113117 read_spss as read_spss ,
114- read_sql as read_sql ,
115- read_sql_query as read_sql_query ,
116118 read_sql_table as read_sql_table ,
117119 read_stata as read_stata ,
118- read_table as read_table ,
119- read_xml as read_xml ,
120120)
121- from pandas .io .json ._normalize import json_normalize as json_normalize
121+ from pandas .io .api import (
122+ read_clipboard as read_clipboard , # pyright: ignore[reportUnknownVariableType]
123+ )
124+ from pandas .io .api import (
125+ read_csv as read_csv , # pyright: ignore[reportUnknownVariableType]
126+ )
127+ from pandas .io .api import (
128+ read_excel as read_excel , # pyright: ignore[reportUnknownVariableType]
129+ )
130+ from pandas .io .api import (
131+ read_html as read_html , # pyright: ignore[reportUnknownVariableType]
132+ )
133+ from pandas .io .api import (
134+ read_orc as read_orc , # pyright: ignore[reportUnknownVariableType]
135+ )
136+ from pandas .io .api import (
137+ read_parquet as read_parquet , # pyright: ignore[reportUnknownVariableType]
138+ )
139+ from pandas .io .api import (
140+ read_sql as read_sql , # pyright: ignore[reportUnknownVariableType]
141+ )
142+ from pandas .io .api import (
143+ read_sql_query as read_sql_query , # pyright: ignore[reportUnknownVariableType]
144+ )
145+ from pandas .io .api import (
146+ read_table as read_table , # pyright: ignore[reportUnknownVariableType]
147+ )
148+ from pandas .io .api import (
149+ read_xml as read_xml , # pyright: ignore[reportUnknownVariableType]
150+ )
151+ from pandas .io .json ._normalize import (
152+ json_normalize as json_normalize , # pyright: ignore[reportUnknownVariableType]
153+ )
122154from pandas .tseries import offsets as offsets
123155from pandas .tseries .api import infer_freq as infer_freq
124156
0 commit comments