We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69e4352 commit 304da6cCopy full SHA for 304da6c
source_py3/python_toolbox/caching/cached_property.py
@@ -74,3 +74,8 @@ def inner(same_method_function, self_obj, *args, **kwargs):
74
with getattr(self_obj, self.get_our_name(self_obj)):
75
return method_function(self_obj, *args, **kwargs)
76
return decorator_tools.decorator(inner, method_function)
77
+
78
79
+ def __repr__(self):
80
+ return '<%s: %s>' % (type(self).__name__, self.our_name or self.getter)
81
0 commit comments