Format a warning message for packages that require manual installation. Returns warning in YELLOW color using ANSI escape codes.
(package_name: str, url: str)
| 111 | |
| 112 | |
| 113 | def 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}" |
no outgoing calls
no test coverage detected