Skip to content

Commit 079b34e

Browse files
committed
Fix type hints.
1 parent e059e21 commit 079b34e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

domdf_python_tools/dates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def utc_timestamp_to_datetime(
182182
if sys.version_info <= (3, 7, 2):
183183
MonthsType = OrderedDict
184184
else:
185-
MonthsType = typing.OrderedDict[str, str]
185+
MonthsType = typing.OrderedDict[str, str] # type: ignore
186186

187187
#: Mapping of 3-character shortcodes to full month names.
188188
months: MonthsType = OrderedDict(

0 commit comments

Comments
 (0)