Skip to content

Commit e503c13

Browse files
authored
TYP: Ignore xlsxwriter _book typing (#62348)
1 parent 4f4b108 commit e503c13

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)
216+
self._book = Workbook(self._handles.handle, **engine_kwargs) # type: ignore[arg-type]
217217
except TypeError:
218218
self._handles.handle.close()
219219
raise

0 commit comments

Comments
 (0)