(output: str)
| 7 | |
| 8 | |
| 9 | def splitlines(output: str) -> typing.Iterable[str]: |
| 10 | return [line.strip() for line in output.splitlines()] |
| 11 | |
| 12 | |
| 13 | def remove_date_header(lines: typing.Iterable[str]) -> typing.Iterable[str]: |
no outgoing calls
no test coverage detected