Skip to content

Commit 4b9944a

Browse files
Fix typo in type annotation
1 parent 5df4db3 commit 4b9944a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/excel/_odswriter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def write_cells(
6060
if _validate_freeze_panes(freeze_panes):
6161
self._create_freeze_panes(sheet_name, freeze_panes)
6262

63-
rows: DefautDict = defaultdict(TableRow)
63+
rows: DefaultDict = defaultdict(TableRow)
6464
col_count: DefaultDict = defaultdict(int)
6565

6666
for cell in sorted(cells, key=lambda cell: (cell.row, cell.col)):

0 commit comments

Comments
 (0)