()
| 61 | |
| 62 | |
| 63 | def _kv_value_width() -> int: |
| 64 | # Keep a fixed start point for Value across all 2-column tables. |
| 65 | # Table border/spacing overhead is intentionally conservative. |
| 66 | return max(24, _table_width() - KV_FIELD_WIDTH - 8) |
| 67 | |
| 68 | |
| 69 | def _add_kv_columns(table: Table) -> None: |
no test coverage detected