MCPcopy Create free account
hub / github.com/FastLED/FastLED / print_progress_section

Method print_progress_section

ci/util/banner_print.py:63–78  ·  view source on GitHub ↗

Print a progress section header. Example output: ────────────────────────────────────────────────────────── Package Installation Progress: ────────────────────────────────────────────────────────── Args: title: Section title

(title: str)

Source from the content-addressed store, hash-verified

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:

Callers 1

print_progress_sectionFunction · 0.80

Calls 1

printFunction · 0.50

Tested by

no test coverage detected