Remove indentation.
(s: str, sep: str = '\n')
| 38 | |
| 39 | |
| 40 | def dedent(s: str, sep: str = '\n') -> str: |
| 41 | """Remove indentation.""" |
| 42 | return sep.join(dedent_initial(l) for l in s.splitlines()) |
| 43 | |
| 44 | |
| 45 | def fill_paragraphs(s: str, width: int, sep: str = '\n') -> str: |
no test coverage detected