Print a progress section header. Example output: ────────────────────────────────────────────────────────── Package Installation Progress: ────────────────────────────────────────────────────────── Args: title: Section title
(title: str)
| 61 | |
| 62 | @staticmethod |
| 63 | def print_progress_section(title: str) -> None: |
| 64 | """Print a progress section header. |
| 65 | |
| 66 | Example output: |
| 67 | ────────────────────────────────────────────────────────── |
| 68 | Package Installation Progress: |
| 69 | ────────────────────────────────────────────────────────── |
| 70 | |
| 71 | Args: |
| 72 | title: Section title |
| 73 | """ |
| 74 | separator = BannerPrinter.SINGLE_LINE * BannerPrinter.BANNER_WIDTH |
| 75 | |
| 76 | print() |
| 77 | print(title) |
| 78 | print(separator) |
| 79 | |
| 80 | @staticmethod |
| 81 | def print_tree_status(root: str, items: list[tuple[str, str, str | None]]) -> None: |
no test coverage detected