Skip to content

Commit 1a9eb6a

Browse files
committed
Update localedata.py
1 parent 5431e89 commit 1a9eb6a

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,7 +18,6 @@
1818
import re
1919
import sys
2020
import threading
21-
from collections import abc
2221
from collections.abc import Iterator, Mapping
2322
from itertools import chain
2423
from typing import Any, TypeVar, MutableMapping
@@ -218,7 +217,7 @@ def resolve(self, data: Mapping[_Key, _Value]) -> dict[_Key, _Value]:
218217
data = alias.resolve(base)
219218
return dict(data)
220219

221-
class LocaleDataDict(abc.MutableMapping[_Key, _Value]):
220+
class LocaleDataDict(MutableMapping[_Key, _Value]):
222221
"""Dictionary wrapper that automatically resolves aliases to the actual
223222
values.
224223
"""

0 commit comments

Comments
 (0)