We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4a8608 commit e46fabcCopy full SHA for e46fabc
1 file changed
autoclass/autodict_.py
@@ -1,4 +1,8 @@
1
-from collections import Mapping
+try:
2
+ from collections.abc import Mapping
3
+except ImportError:
4
+ from collections import Mapping
5
+
6
from itertools import chain
7
from warnings import warn
8
0 commit comments