Skip to content

Commit

Permalink
Backport PR #57689 on branch 2.2.x (CI: fix ci (calamine typing)) (#5…
Browse files Browse the repository at this point in the history
…7692)

Backport PR #57689: CI: fix ci (calamine typing)
  • Loading branch information
MarcoGorelli authored Mar 1, 2024
1 parent bdc79c1 commit 9a07184
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pandas/io/excel/_calamine.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ def load_workbook(
) -> CalamineWorkbook:
from python_calamine import load_workbook

return load_workbook(
filepath_or_buffer, **engine_kwargs # type: ignore[arg-type]
)
return load_workbook(filepath_or_buffer, **engine_kwargs)

@property
def sheet_names(self) -> list[str]:
Expand Down

0 comments on commit 9a07184

Please sign in to comment.