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

Function format_manual_install_warning

ci/util/github_url_converter.py:113–121  ·  view source on GitHub ↗

Format a warning message for packages that require manual installation. Returns warning in YELLOW color using ANSI escape codes.

(package_name: str, url: str)

Source from the content-addressed store, hash-verified

111
112
113def format_manual_install_warning(package_name: str, url: str) -> str:
114 """
115 Format a warning message for packages that require manual installation.
116
117 Returns warning in YELLOW color using ANSI escape codes.
118 """
119 YELLOW = "\033[93m"
120 RESET = "\033[0m"
121 return f"{YELLOW}⚠️ WARNING: Toolchain '{package_name}' requires manual git installation: {url}{RESET}"

Callers 1

predownload_toolchainsFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected