Skip to content

Commit 5b67c6e

Browse files
committed
Fix type-ignore
1 parent f7433c8 commit 5b67c6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/excel/_xlsxwriter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def __init__( # pyright: ignore[reportInconsistentConstructor]
213213
)
214214

215215
try:
216-
self._book = Workbook(self._handles.handle, **engine_kwargs) # type: ignore[arg-type]
216+
self._book = Workbook(self._handles.handle, **engine_kwargs)
217217
except TypeError:
218218
self._handles.handle.close()
219219
raise

0 commit comments

Comments
 (0)