diff options
author | hut <hut@lavabit.com> | 2010-05-30 15:09:50 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-05-30 15:09:50 +0200 |
commit | da2d9aee9e6cb1cbcad11e59fa549a59eebd531e (patch) | |
tree | 060b46e1c73ce61cb9d4b40f40fbdb505daf79fb | |
parent | 40fcbc3d8bde9dd226f0d2fe16cf4126bdcc02c7 (diff) | |
download | ranger-da2d9aee9e6cb1cbcad11e59fa549a59eebd531e.tar.gz |
ext.lazy_property: fixed indentation in docstring
-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): |