diff options
Diffstat (limited to 'ranger/ext/lazy_property.py')
-rw-r--r-- | ranger/ext/lazy_property.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ranger/ext/lazy_property.py b/ranger/ext/lazy_property.py index 60d3c802..9e3454b0 100644 --- a/ranger/ext/lazy_property.py +++ b/ranger/ext/lazy_property.py @@ -1,8 +1,7 @@ # From http://blog.pythonisito.com/2008/08/lazy-descriptors.html class lazy_property(object): - """ - A @property-like decorator with lazy evaluation + """A @property-like decorator with lazy evaluation >>> class Foo: ... @lazy_property |