Skip to content

Commit 634b0f4

Browse files
committed
Change doc strings
1 parent 2383520 commit 634b0f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/io/html.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -967,14 +967,14 @@ def read_html(
967967
default of ``None`` tries to use ``lxml`` to parse and if that fails it
968968
falls back on ``bs4`` + ``html5lib``.
969969
970-
header : int or sequence of ints, optional
970+
header : int or list-like or None, optional
971971
The row (or list of rows for a :class:`~pandas.MultiIndex`) to use to
972972
make the columns headers.
973973
974-
index_col : int or sequence of ints, optional
974+
index_col : int or list-like or None, optional
975975
The column (or list of columns) to use to create the index.
976976
977-
skiprows : int, sequence of ints or slice, optional
977+
skiprows : int or list-like or None, optional
978978
Number of rows to skip after parsing the column integer. 0-based. If a
979979
sequence of integers or a slice is given, will skip the rows indexed by
980980
that sequence. Note that a single element sequence means 'skip the nth

0 commit comments

Comments
 (0)