@@ -61,16 +61,20 @@ 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 ,
66- value_counts as value_counts ,
65+ )
66+ from pandas .core .api import (
67+ to_timedelta as to_timedelta , # pyright: ignore[reportUnknownVariableType]
68+ )
69+ from pandas .core .api import (
70+ value_counts as value_counts , # pyright: ignore[reportUnknownVariableType]
6771)
6872from pandas .core .arrays .sparse import SparseDtype as SparseDtype
69- from pandas .core .computation .api import eval as eval
73+ from pandas .core .computation .api import (
74+ eval as eval , # pyright: ignore[reportUnknownVariableType]
75+ )
7076from pandas .core .reshape .api import (
7177 concat as concat ,
72- crosstab as crosstab ,
73- cut as cut ,
7478 from_dummies as from_dummies ,
7579 get_dummies as get_dummies ,
7680 lreshape as lreshape ,
@@ -79,10 +83,18 @@ from pandas.core.reshape.api import (
7983 merge_asof as merge_asof ,
8084 merge_ordered as merge_ordered ,
8185 pivot as pivot ,
82- pivot_table as pivot_table ,
8386 qcut as qcut ,
8487 wide_to_long as wide_to_long ,
8588)
89+ from pandas .core .reshape .api import (
90+ crosstab as crosstab , # pyright: ignore[reportUnknownVariableType]
91+ )
92+ from pandas .core .reshape .api import (
93+ cut as cut , # pyright: ignore[reportUnknownVariableType]
94+ )
95+ from pandas .core .reshape .api import (
96+ pivot_table as pivot_table , # pyright: ignore[reportUnknownVariableType]
97+ )
8698
8799from pandas ._config import (
88100 describe_option as describe_option ,
@@ -99,27 +111,49 @@ from pandas.io.api import (
99111 ExcelFile as ExcelFile ,
100112 ExcelWriter as ExcelWriter ,
101113 HDFStore as HDFStore ,
102- read_clipboard as read_clipboard ,
103- read_csv as read_csv ,
104- read_excel as read_excel ,
105114 read_feather as read_feather ,
106115 read_fwf as read_fwf ,
107116 read_hdf as read_hdf ,
108- read_html as read_html ,
109117 read_json as read_json ,
110- read_orc as read_orc ,
111- read_parquet as read_parquet ,
112118 read_pickle as read_pickle ,
113119 read_sas as read_sas ,
114120 read_spss as read_spss ,
115- read_sql as read_sql ,
116- read_sql_query as read_sql_query ,
117121 read_sql_table as read_sql_table ,
118122 read_stata as read_stata ,
119- read_table as read_table ,
120- read_xml as read_xml ,
121123)
122- from pandas .io .json ._normalize import json_normalize as json_normalize
124+ from pandas .io .api import (
125+ read_clipboard as read_clipboard , # pyright: ignore[reportUnknownVariableType]
126+ )
127+ from pandas .io .api import (
128+ read_csv as read_csv , # pyright: ignore[reportUnknownVariableType]
129+ )
130+ from pandas .io .api import (
131+ read_excel as read_excel , # pyright: ignore[reportUnknownVariableType]
132+ )
133+ from pandas .io .api import (
134+ read_html as read_html , # pyright: ignore[reportUnknownVariableType]
135+ )
136+ from pandas .io .api import (
137+ read_orc as read_orc , # pyright: ignore[reportUnknownVariableType]
138+ )
139+ from pandas .io .api import (
140+ read_parquet as read_parquet , # pyright: ignore[reportUnknownVariableType]
141+ )
142+ from pandas .io .api import (
143+ read_sql as read_sql , # pyright: ignore[reportUnknownVariableType]
144+ )
145+ from pandas .io .api import (
146+ read_sql_query as read_sql_query , # pyright: ignore[reportUnknownVariableType]
147+ )
148+ from pandas .io .api import (
149+ read_table as read_table , # pyright: ignore[reportUnknownVariableType]
150+ )
151+ from pandas .io .api import (
152+ read_xml as read_xml , # pyright: ignore[reportUnknownVariableType]
153+ )
154+ from pandas .io .json ._normalize import (
155+ json_normalize as json_normalize , # pyright: ignore[reportUnknownVariableType]
156+ )
123157from pandas .tseries import offsets as offsets
124158from pandas .tseries .api import infer_freq as infer_freq
125159
0 commit comments