(rows, separating_lines)
| 1423 | |
| 1424 | |
| 1425 | def _reinsert_separating_lines(rows, separating_lines): |
| 1426 | if separating_lines: |
| 1427 | for index in separating_lines: |
| 1428 | rows.insert(index, SEPARATING_LINE) |
| 1429 | |
| 1430 | |
| 1431 | def _prepend_row_index(rows, index): |
no outgoing calls
no test coverage detected