(row)
| 124 | |
| 125 | |
| 126 | def _is_separating_line(row): |
| 127 | row_type = type(row) |
| 128 | is_sl = (row_type == list or row_type == str) and ( |
| 129 | (len(row) >= 1 and _is_separating_line_value(row[0])) |
| 130 | or (len(row) >= 2 and _is_separating_line_value(row[1])) |
| 131 | ) |
| 132 | |
| 133 | return is_sl |
| 134 | |
| 135 | |
| 136 | def _pipe_segment_with_colons(align, colwidth): |
no test coverage detected