Closed tirkarthi closed 4 years ago
Importing ABC directly from collections was deprecated and will be removed in Python 3.10
eth_utils/types.py 32: return isinstance(obj, collections.Mapping) 36: return not is_string(obj) and isinstance(obj, collections.Sequence)
Use collections.abc for Python 3
What was wrong?
Importing ABC directly from collections was deprecated and will be removed in Python 3.10
How can it be fixed?
Use collections.abc for Python 3