Skip to content

Commit ac86888

Browse files
committed
Fix typing error
1 parent d69ce74 commit ac86888

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/io/html.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,9 @@ def _expand_colspan_rowspan(self, rows, header=False):
488488
to subsequent cells.
489489
"""
490490
all_texts = [] # list of rows, each a list of str
491-
remainder: list[tuple[int, str, int]] = [] # list of (index, text, nrows)
491+
remainder: list[
492+
tuple[int, str | tuple, int]
493+
] = [] # list of (index, text, nrows)
492494

493495
for tr in rows:
494496
texts = [] # the output for this row

0 commit comments

Comments
 (0)