MCPcopy Create free account
hub / github.com/ClangBuiltLinux/boot-utils / green

Function green

utils.py:173–180  ·  view source on GitHub ↗

Prints string in bold green. Parameters: string (str): String to print in bold green.

(string: str)

Source from the content-addressed store, hash-verified

171
172
173def green(string: str) -> None:
174 """
175 Prints string in bold green.
176
177 Parameters:
178 string (str): String to print in bold green.
179 """
180 print(f"\n\033[01;32m{string}\033[0m", flush=True)
181
182
183def prepare_initrd(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected