diff options
-rw-r--r-- | ranger/ext/lazy_property.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ranger/ext/lazy_property.py b/ranger/ext/lazy_property.py index 6f894179..320a1993 100644 --- a/ranger/ext/lazy_property.py +++ b/ranger/ext/lazy_property.py @@ -7,9 +7,9 @@ class lazy_property(object): Example: class Foo: @lazy_property - def bar(self): - result = [...] - return result + def bar(self): + result = [...] + return result """ def __init__(self, method): |