File tree Expand file tree Collapse file tree 3 files changed +6
-14
lines changed
Expand file tree Collapse file tree 3 files changed +6
-14
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,9 @@ from pandas.io.api import (
114114 read_feather as read_feather ,
115115 read_fwf as read_fwf ,
116116 read_hdf as read_hdf ,
117+ read_html as read_html ,
117118 read_json as read_json ,
119+ read_parquet as read_parquet ,
118120 read_pickle as read_pickle ,
119121 read_sas as read_sas ,
120122 read_spss as read_spss ,
@@ -126,15 +128,9 @@ from pandas.io.api import (
126128from pandas .io .api import (
127129 read_excel as read_excel , # pyright: ignore[reportUnknownVariableType]
128130)
129- from pandas .io .api import (
130- read_html as read_html , # pyright: ignore[reportUnknownVariableType]
131- )
132131from pandas .io .api import (
133132 read_orc as read_orc , # pyright: ignore[reportUnknownVariableType]
134133)
135- from pandas .io .api import (
136- read_parquet as read_parquet , # pyright: ignore[reportUnknownVariableType]
137- )
138134from pandas .io .api import (
139135 read_sql as read_sql , # pyright: ignore[reportUnknownVariableType]
140136)
Original file line number Diff line number Diff line change @@ -7,17 +7,13 @@ from pandas.io.excel import (
77 read_excel as read_excel , # pyright: ignore[reportUnknownVariableType]
88)
99from pandas .io .feather_format import read_feather as read_feather
10- from pandas .io .html import (
11- read_html as read_html , # pyright: ignore[reportUnknownVariableType]
12- )
10+ from pandas .io .html import read_html as read_html
1311from pandas .io .json import read_json as read_json
1412from pandas .io .orc import (
1513 read_orc as read_orc , # pyright: ignore[reportUnknownVariableType]
1614)
17- from pandas .io .parquet import (
18- read_parquet as read_parquet , # pyright: ignore[reportUnknownVariableType]
19- )
20- from pandas .io .parsers import (
15+ from pandas .io .parquet import read_parquet as read_parquet
16+ from pandas .io .parsers .readers import (
2117 read_csv as read_csv ,
2218 read_fwf as read_fwf ,
2319 read_table as read_table ,
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ from pandas._typing import (
2929def read_html (
3030 io : FilePath | ReadBuffer [str ],
3131 * ,
32- match : str | Pattern = ...,
32+ match : str | Pattern [ str ] = ...,
3333 flavor : HTMLFlavors | Sequence [HTMLFlavors ] | None = ...,
3434 header : int | Sequence [int ] | None = ...,
3535 index_col : int | Sequence [int ] | list [HashableT1 ] | None = ...,
You can’t perform that action at this time.
0 commit comments