We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
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.
PySeqsee/farg/third_party/skeleton/core.py
Sorry, something went wrong.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: