You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> import frozendict
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/crypt0xyc/projects/starknet-arb/.venv/lib/python3.10/site-packages/frozendict/__init__.py", line 16, in <module>
class frozendict(collections.Mapping):
AttributeError: module 'collections' has no attribute 'Mapping'
Proposed solution for Python 3.10 compatibility
replace collections.Mapping with collections.abc.Mapping
The text was updated successfully, but these errors were encountered:
Issue: error thrown on module import
Proposed solution for Python 3.10 compatibility
replace
collections.Mapping
withcollections.abc.Mapping
The text was updated successfully, but these errors were encountered: