Skip to content

Commit fbb2068

Browse files
mypy fix
1 parent 6e5cc10 commit fbb2068

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/excel/_odswriter.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from collections import defaultdict
22
import datetime
3-
from typing import DefaultDict
3+
from typing import DefaultDict, Dict
44

55
import pandas._libs.json as json
66

@@ -23,7 +23,7 @@ def __init__(self, path, engine=None, encoding=None, mode="w", **engine_kwargs):
2323
super().__init__(path, mode=mode, **engine_kwargs)
2424

2525
self.book = OpenDocumentSpreadsheet()
26-
self._style_dict = {}
26+
self._style_dict: Dict[str, str] = {}
2727

2828
def save(self):
2929
"""

0 commit comments

Comments
 (0)