Skip to content

Commit ad90384

Browse files
authored
Fix compression misspelling in ExcelWriter (#44759)
1 parent a1c9907 commit ad90384

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/excel/_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,7 @@ def __init__(
10001000

10011001
# cast ExcelWriter to avoid adding 'if self.handles is not None'
10021002
self.handles = IOHandles(
1003-
cast(IO[bytes], path), compression={"copression": None}
1003+
cast(IO[bytes], path), compression={"compression": None}
10041004
)
10051005
if not isinstance(path, ExcelWriter):
10061006
self.handles = get_handle(

0 commit comments

Comments
 (0)