Open Angular-Angel opened 1 month ago
Putting:
import sys
if sys.version_info.major == 3 and sys.version_info.minor >= 10:
import collections
setattr(collections, "MutableMapping", collections.abc.MutableMapping)
in: PySeqsee/farg/third_party/skeleton/core.py
seems to have worked.
I have this problem:
https://stackoverflow.com/questions/70943244/attributeerror-module-collections-has-no-attribute-mutablemapping
Seems like it requires rewriting code to work with the new version? Saw some workarounds, will test them.