-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
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
Error in Python 3.10: module 'collections' has no attribute 'MutableSet'
#127
Comments
Closing, since this is actually an error in the |
Actually, this error occurs because of using old |
I have opened a pull request that will close this issue. |
@joeyespo Did you have a chance yet to review my PR (linked above) that fixes this issue? Please let me know if something in the PR needs to be improved. Thanks in advance 🙂 |
Closing due to lack of response - this project appears to be unmaintained. |
This is because
MutableSet
was moved fromcollections
module tocollections.abc
module in Python 3.3. Socollections.abc
has to be used in Python 3.3+ instead ofcollections
.Full traceback:
The text was updated successfully, but these errors were encountered: