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

Method print_yellow

ci/util/color_output.py:51–57  ·  view source on GitHub ↗

Print message in yellow color.

(self, message: str)

Source from the content-addressed store, hash-verified

49 self._fallback_print(msg, "✅ ")
50
51 def print_yellow(self, message: str) -> None:
52 """Print message in yellow color."""
53 msg = f"{get_elapsed_str()} {message}"
54 if self.console:
55 self.console.print(msg, style="yellow")
56 else:
57 self._fallback_print(msg, "⚠️ ")
58
59 def print_red(self, message: str) -> None:
60 """Print message in red color."""

Callers 1

print_yellowFunction · 0.80

Calls 3

_fallback_printMethod · 0.95
get_elapsed_strFunction · 0.85
printMethod · 0.45

Tested by

no test coverage detected