diff --git a/koans/about_attribute_access.py b/koans/about_attribute_access.py index f12f61143..873e48509 100644 --- a/koans/about_attribute_access.py +++ b/koans/about_attribute_access.py @@ -105,7 +105,7 @@ def __getattribute__(self, attr_name): # Using 'object' directly because using super() here will also # trigger a __getattribute__() call. - return object.__getattribute__(self, attr_name) + return super().__getattribute__(attr_name) def my_method(self): pass