summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-05-30 15:09:50 +0200
committerhut <hut@lavabit.com>2010-05-30 15:09:50 +0200
commitda2d9aee9e6cb1cbcad11e59fa549a59eebd531e (patch)
tree060b46e1c73ce61cb9d4b40f40fbdb505daf79fb
parent40fcbc3d8bde9dd226f0d2fe16cf4126bdcc02c7 (diff)
downloadranger-da2d9aee9e6cb1cbcad11e59fa549a59eebd531e.tar.gz
ext.lazy_property: fixed indentation in docstring
-rw-r--r--ranger/ext/lazy_property.py6
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):
64e2404612bf8754238bf71ae805f4022e'>^
2199940a ^
82ac0b7e ^
2caaa7f1 ^


82ac0b7e ^
2caaa7f1 ^
b2e4056d ^
82ac0b7e ^

363be37f ^
c442a5ad ^
6c96a437 ^
795f5244 ^
82ac0b7e ^
6c96a437 ^
ab6ed192 ^
0487a30e ^
aae198a9 ^
0f2781f8 ^
82ac0b7e ^

ae256ea1 ^

9dcbec39 ^
35064671 ^

af023b32 ^
ae256ea1 ^
3e5f4358 ^
9dcbec39 ^
3e5f4358 ^

f3760b0f ^
f22250a1 ^
9dcbec39 ^
82ac0b7e ^

c442a5ad ^
57d01f21 ^
9dcbec39 ^
57d01f21 ^

f22250a1 ^
82ac0b7e ^



82ac0b7e ^


b24eb476 ^

82ac0b7e ^
1b76245c ^
82ac0b7e ^

ae256ea1 ^
af023b32 ^
b24eb476 ^
82ac0b7e ^
363be37f ^
1e38eee5 ^
363be37f ^

82ac0b7e ^




b24eb476 ^
82ac0b7e ^
f3760b0f ^
9dcbec39 ^
6c96a437 ^
1b76245c ^
82ac0b7e ^
1b76245c ^
1e38eee5 ^
82ac0b7e ^







b24eb476 ^
82ac0b7e ^
f3760b0f ^
9dcbec39 ^
1e38eee5 ^
82ac0b7e ^
f22250a1 ^

82ac0b7e ^

5f98a10c ^
b24eb476 ^

82ac0b7e ^
ae256ea1 ^
af023b32 ^
9dcbec39 ^
e4630643 ^

ae256ea1 ^
82ac0b7e ^
f3760b0f ^
82ac0b7e ^
1e38eee5 ^
4a943d4e ^













2655ae72 ^

4a943d4e ^






















b0631dec ^
4a943d4e ^














1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204