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
Problem:
remerkleable/remerkleable/virtual.py
Lines 23 to 26 in 91ed092
Error:
ValueError: '_is_leaf' in __slots__ conflicts with class variable
If you set the default values to None in __init__ instead, it will fix the problem.
__init__
Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11 all complain about __slots__ conflicts when you give attributes a default value.
__slots__
See: python/cpython#106067
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem:
remerkleable/remerkleable/virtual.py
Lines 23 to 26 in 91ed092
Error:
If you set the default values to None in
__init__
instead, it will fix the problem.Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11 all complain about
__slots__
conflicts when you give attributes a default value.See: python/cpython#106067
The text was updated successfully, but these errors were encountered: