Steve Canny cbe1b35621
rfctr(chunk): prep for adding TableSplitter (#3510)
**Summary**
Mechanical refactoring in preparation for adding (pre-chunk)
`TableSplitter` in a PR stacked on this one.
2024-08-12 18:04:49 +00:00

14 lines
314 B
Python

from __future__ import annotations
from typing import Sequence
from pandas._typing import FilePath, ReadBuffer
from pandas.core.frame import DataFrame
def read_excel(
io: FilePath | ReadBuffer[bytes],
sheet_name: None,
*,
header: int | Sequence[int] | None = ...,
) -> dict[str, DataFrame]: ...