Skip to content

Commit 5431e89

Browse files
committed
try typing.MutableMapping for 3.7-3.8 support
1 parent b70a904 commit 5431e89

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

babel/localedata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
import sys
2020
import threading
2121
from collections import abc
22-
from collections.abc import Iterator, Mapping, MutableMapping
22+
from collections.abc import Iterator, Mapping
2323
from itertools import chain
24-
from typing import Any, TypeVar
24+
from typing import Any, TypeVar, MutableMapping
2525

2626
_Key = TypeVar('_Key',)
2727
_Value = TypeVar('_Value')

0 commit comments

Comments
 (0)