(self, indent: int)
| 426 | ) |
| 427 | |
| 428 | def body(self, indent: int) -> typing.Iterable[cst.BaseSmallStatement]: |
| 429 | yield cst.Expr(self.docstring(indent)) |
| 430 | yield cst.Expr(cst.Ellipsis()) |
| 431 | |
| 432 | def docstring(self, indent: int) -> cst.BaseExpression: |
| 433 | i = " " * ((indent + 1) * 4) |