Skip to content

Commit 6f5b9f9

Browse files
committed
Backport PR pandas-dev#57689: CI: fix ci (calamine typing)
1 parent bdc79c1 commit 6f5b9f9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/io/excel/_calamine.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,7 @@ def load_workbook(
7474
) -> CalamineWorkbook:
7575
from python_calamine import load_workbook
7676

77-
return load_workbook(
78-
filepath_or_buffer, **engine_kwargs # type: ignore[arg-type]
79-
)
77+
return load_workbook(filepath_or_buffer, **engine_kwargs)
8078

8179
@property
8280
def sheet_names(self) -> list[str]:

0 commit comments

Comments
 (0)