Skip to content

Commit 0fc1cc5

Browse files
committed
Make pd.ExcelFile consistent with the run time.
1 parent 4976e11 commit 0fc1cc5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas-stubs/io/excel/_base.pyi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,9 +245,10 @@ class ExcelFile:
245245
io: FilePath | ReadBuffer[bytes] | bytes = ...
246246
def __init__(
247247
self,
248-
io: FilePath | ReadBuffer[bytes] | bytes,
248+
path_or_buffer: FilePath | ReadBuffer[bytes] | bytes,
249249
engine: ExcelReadEngine | None = ...,
250250
storage_options: StorageOptions = ...,
251+
engine_kwargs: dict[str, Any] | None = ...,
251252
) -> None: ...
252253
def __fspath__(self): ...
253254
@overload

0 commit comments

Comments
 (0)