We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 742ed39 commit 948d984Copy full SHA for 948d984
xarray/backends/lru_cache.py
@@ -1,8 +1,9 @@
1
import collections
2
+import collections.abc
3
import threading
4
5
-class LRUCache(collections.MutableMapping):
6
+class LRUCache(collections.abc.MutableMapping):
7
"""Thread-safe LRUCache based on an OrderedDict.
8
9
All dict operations (__getitem__, __setitem__, __contains__) update the
0 commit comments