We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a09093 commit 67fb291Copy full SHA for 67fb291
1 file changed
src/attr/_make.py
@@ -941,10 +941,6 @@ def _create_slots_class(self):
941
class_annotations[name] = annotation
942
cd[name] = _make_cached_property_uncached(func, self._cls)
943
944
- original_getattr = cd.get("__getattr__")
945
- if original_getattr is not None:
946
- additional_closure_functions_to_update.append(original_getattr)
947
-
948
# We only add the names of attributes that aren't inherited.
949
# Setting __slots__ to inherited attributes wastes memory.
950
slot_names = [name for name in names if name not in base_names]
0 commit comments