(self)
| 307 | """Description of a decoratormethod.""" |
| 308 | |
| 309 | def run(self) -> list[Node]: |
| 310 | self.name = 'py:method' |
| 311 | return super().run() |
| 312 | |
| 313 | def handle_signature(self, sig: str, signode: desc_signature) -> tuple[str, str]: |
| 314 | ret = super().handle_signature(sig, signode) |