(
rows: cabc.Iterable[tuple[str, str]], col_count: int
)
| 22 | |
| 23 | |
| 24 | def iter_rows( |
| 25 | rows: cabc.Iterable[tuple[str, str]], col_count: int |
| 26 | ) -> cabc.Iterator[tuple[str, ...]]: |
| 27 | for row in rows: |
| 28 | yield row + ("",) * (col_count - len(row)) |
| 29 | |
| 30 | |
| 31 | def wrap_text( |