Skip to content

Commit

Permalink
added str in index_col function description as well as downstream fun…
Browse files Browse the repository at this point in the history
…ction that use index_col
  • Loading branch information
himanshu238 committed Nov 7, 2023
1 parent ed10a14 commit c45fb18
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pandas/io/excel/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ def read_excel(
*,
header: int | Sequence[int] | None = ...,
names: SequenceNotStr[Hashable] | range | None = ...,
index_col: int | Sequence[int] | None = ...,
index_col: int | str | Sequence[int] | None = ...,
usecols: int
| str
| Sequence[int]
Expand Down Expand Up @@ -430,7 +430,7 @@ def read_excel(
*,
header: int | Sequence[int] | None = ...,
names: SequenceNotStr[Hashable] | range | None = ...,
index_col: int | Sequence[int] | None = ...,
index_col: int | str | Sequence[int] | None = ...,
usecols: int
| str
| Sequence[int]
Expand Down Expand Up @@ -469,7 +469,7 @@ def read_excel(
*,
header: int | Sequence[int] | None = 0,
names: SequenceNotStr[Hashable] | range | None = None,
index_col: int | Sequence[int] | None = None,
index_col: int | str | Sequence[int] | None = None,
usecols: int
| str
| Sequence[int]
Expand Down Expand Up @@ -668,7 +668,7 @@ def _check_skiprows_func(
def _calc_rows(
self,
header: int | Sequence[int] | None,
index_col: int | Sequence[int] | None,
index_col: int | str | Sequence[int] | None,
skiprows: Sequence[int] | int | Callable[[int], object] | None,
nrows: int | None,
) -> int | None:
Expand All @@ -681,7 +681,7 @@ def _calc_rows(
----------
header : int, list of int, or None
See read_excel docstring.
index_col : int, list of int, or None
index_col : int, str, list of int, or None
See read_excel docstring.
skiprows : list-like, int, callable, or None
See read_excel docstring.
Expand Down Expand Up @@ -734,7 +734,7 @@ def parse(
sheet_name: str | int | list[int] | list[str] | None = 0,
header: int | Sequence[int] | None = 0,
names: SequenceNotStr[Hashable] | range | None = None,
index_col: int | Sequence[int] | None = None,
index_col: int | str | Sequence[int] | None = None,
usecols=None,
dtype: DtypeArg | None = None,
true_values: Iterable[Hashable] | None = None,
Expand Down Expand Up @@ -1593,7 +1593,7 @@ def parse(
sheet_name: str | int | list[int] | list[str] | None = 0,
header: int | Sequence[int] | None = 0,
names: SequenceNotStr[Hashable] | range | None = None,
index_col: int | Sequence[int] | None = None,
index_col: int | str | Sequence[int] | None = None,
usecols=None,
converters=None,
true_values: Iterable[Hashable] | None = None,
Expand Down

0 comments on commit c45fb18

Please sign in to comment.