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 was confused by the comment below because it looks to me like super() would resolve the the parent class which is object.
super()
object
python_koans/koans/about_attribute_access.py
Lines 106 to 108 in 800cdf5
I substituted the line with return super().__getattribute__(attr_name) and it worked fine.
return super().__getattribute__(attr_name)
The text was updated successfully, but these errors were encountered:
AboutAttributeAccess: super would resolve to object
850064a
Fixing gregmalcolm#250
No branches or pull requests
I was confused by the comment below because it looks to me like
super()
would resolve the the parent class which isobject
.python_koans/koans/about_attribute_access.py
Lines 106 to 108 in 800cdf5
I substituted the line with
return super().__getattribute__(attr_name)
and it worked fine.The text was updated successfully, but these errors were encountered: