(tw: TerminalWriter, doc: str, indent: str = " ")
| 2330 | |
| 2331 | |
| 2332 | def write_docstring(tw: TerminalWriter, doc: str, indent: str = " ") -> None: |
| 2333 | for line in doc.split("\n"): |
| 2334 | tw.line(indent + line) |
| 2335 | |
| 2336 | |
| 2337 | def register_fixture( |
no test coverage detected