@@ -184,6 +184,7 @@ def __delete__(self, instance): # type: (typing.Any) -> None
184184 def fget (self ): # type: () -> typing.Optional[typing.Callable[[typing.Any, ], typing.Any]]
185185 """Getter instance.
186186
187+ :return: Normal getter instance
187188 :rtype: typing.Optional[typing.Callable[[typing.Any, ], typing.Any]]
188189 """
189190 return self .__fget
@@ -192,6 +193,7 @@ def fget(self): # type: () -> typing.Optional[typing.Callable[[typing.Any, ], t
192193 def fset (self ): # type: () -> typing.Optional[typing.Callable[[typing.Any, typing.Any], None]]
193194 """Setter instance.
194195
196+ :return: Setter instance
195197 :rtype: typing.Optional[typing.Callable[[typing.Any, typing.Any], None]]
196198 """
197199 return self .__fset
@@ -200,6 +202,7 @@ def fset(self): # type: () -> typing.Optional[typing.Callable[[typing.Any, typi
200202 def fdel (self ): # type: () -> typing.Optional[typing.Callable[[typing.Any, ], None]]
201203 """Deleter instance.
202204
205+ :return: Deletter instance
203206 :rtype: typing.Optional[typing.Callable[[typing.Any, ], None]]
204207 """
205208 return self .__fdel
@@ -208,6 +211,7 @@ def fdel(self): # type: () -> typing.Optional[typing.Callable[[typing.Any, ], N
208211 def fcget (self ): # type: () -> typing.Optional[typing.Callable[[typing.Any, ], typing.Any]]
209212 """Class wide getter instance.
210213
214+ :return: Class wide getter instance
211215 :rtype: typing.Optional[typing.Callable[[typing.Any, ], typing.Any]]
212216 """
213217 return self .__fcget
@@ -219,6 +223,7 @@ def getter(
219223
220224 :param fget: new normal getter.
221225 :type fget: typing.Optional[typing.Callable[[typing.Any, ], typing.Any]]
226+ :return: AdvancedProperty
222227 :rtype: AdvancedProperty
223228 """
224229 self .__fget = fget
@@ -231,6 +236,7 @@ def setter(
231236
232237 :param fset: new setter.
233238 :type fset: typing.Optional[typing.Callable[[typing.Any, typing.Any], None]]
239+ :return: AdvancedProperty
234240 :rtype: AdvancedProperty
235241 """
236242 self .__fset = fset
@@ -243,6 +249,7 @@ def deleter(
243249
244250 :param fdel: New deleter.
245251 :type fdel: typing.Optional[typing.Callable[[typing.Any, ], None]]
252+ :return: AdvancedProperty
246253 :rtype: AdvancedProperty
247254 """
248255 self .__fdel = fdel
@@ -255,6 +262,7 @@ def cgetter(
255262
256263 :param fcget: new class-wide getter.
257264 :type fcget: typing.Optional[typing.Callable[[typing.Any, ], typing.Any]]
265+ :return: AdvancedProperty
258266 :rtype: AdvancedProperty
259267 """
260268 self .__fcget = fcget
0 commit comments