14 lines
314 B
Python
Raw Permalink Normal View History

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]: ...