Create substitution text for {parameters}
(params: list[Parameter])
| 1511 | |
| 1512 | @staticmethod |
| 1513 | def format_docstring_parameters(params: list[Parameter]) -> str: |
| 1514 | """Create substitution text for {parameters}""" |
| 1515 | return "".join(p.render_docstring() + "\n" for p in params if p.docstring) |
| 1516 | |
| 1517 | def format_docstring(self) -> str: |
| 1518 | assert self.function is not None |
no test coverage detected