Extract the text content from lines.
(lines: list[Strip])
| 10 | |
| 11 | |
| 12 | def _extract_content(lines: list[Strip]) -> list[str]: |
| 13 | """Extract the text content from lines.""" |
| 14 | content = ["".join(segment.text for segment in line) for line in lines] |
| 15 | return content |
| 16 | |
| 17 | |
| 18 | def test_set_dirty(): |
no test coverage detected
searching dependent graphs…