(self, indent: int)
| 430 | yield cst.Expr(cst.Ellipsis()) |
| 431 | |
| 432 | def docstring(self, indent: int) -> cst.BaseExpression: |
| 433 | i = " " * ((indent + 1) * 4) |
| 434 | inner = f"\n{i}".join(metadata_lines(self.metadata)) |
| 435 | return cst.SimpleString(f'"""\n{i}{inner}\n{i}"""') |
| 436 | |
| 437 | def parameters( |
| 438 | self, type: typing.Literal["function", "classmethod", "method"] |
no test coverage detected