Skip to content

Commit a25f560

Browse files
Backport PR #62348 on branch 2.3.x (TYP: Ignore xlsxwriter _book typing) (#62391)
Co-authored-by: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com>
1 parent 374ddcb commit a25f560

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__(
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)