Skip to content

Commit d8358e6

Browse files
committed
fix types
1 parent 7800066 commit d8358e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/excel/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ def _parse_sheet(
829829
# header indexes reference rows after removing skiprows, so we
830830
# create an index map from the without-skiprows to the
831831
# original indexes.
832-
ixmap: Union(range, list[int])
832+
ixmap: Union[range, list[int]]
833833
if skiprows is None:
834834
ixmap = range(len(data))
835835
elif is_integer(skiprows):

0 commit comments

Comments
 (0)