(column: str, align: ColumnAlign, width: int)
| 311 | |
| 312 | |
| 313 | def FormatColumn(column: str, align: ColumnAlign, width: int): |
| 314 | return column.ljust(width) if align == ColumnAlign.LEFT else column.rjust(width) |
| 315 | |
| 316 | |
| 317 | def FormatLine(line: str, line_state: LineState, state: ColumnsState) -> str: |