Skip to content

Commit 70aa676

Browse files
committed
try typing.MutableMapping for 3.7-3.8 support
1 parent 701358e commit 70aa676

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

babel/localedata.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@
1818
import re
1919
import sys
2020
import threading
21-
from collections import abc
2221
from collections.abc import Iterator, Mapping, MutableMapping
2322
from functools import lru_cache
2423
from itertools import chain
25-
from typing import Any, TypeVar
24+
from typing import Any, TypeVar, MutableMapping
2625

2726
_Key = TypeVar('_Key',)
2827
_Value = TypeVar('_Value')

0 commit comments

Comments
 (0)