Skip to content

Commit 773a19c

Browse files
mroeschkeeicchen
authored andcommitted
TYP: Ignore xlsxwriter _book typing (pandas-dev#62348)
1 parent 808c6f9 commit 773a19c

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)