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

Function yellow

utils.py:276–283  ·  view source on GitHub ↗

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

(string: str)

Source from the content-addressed store, hash-verified

274
275
276def yellow(string: str) -> None:
277 """
278 Prints string in bold yellow.
279
280 Parameters:
281 string (str): String to print in bold yellow.
282 """
283 print(f"\n\033[01;33m{string}\033[0m", flush=True)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected