Skip to content

Commit 3d29080

Browse files
committed
MAINT: collections.abc imports
1 parent e3e7ed6 commit 3d29080

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/cbook/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"""
88

99
import collections
10+
import collections.abc
1011
import contextlib
1112
import datetime
1213
import errno
@@ -2090,7 +2091,7 @@ def _warn_external(message, category=None):
20902091

20912092
class _OrderedSet(collections.abc.MutableSet):
20922093
def __init__(self):
2093-
self._od = collections.abc.OrderedDict()
2094+
self._od = collections.OrderedDict()
20942095

20952096
def __contains__(self, key):
20962097
return key in self._od

0 commit comments

Comments
 (0)