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

Method print_green

ci/util/color_output.py:43–49  ·  view source on GitHub ↗

Print message in green color.

(self, message: str)

Source from the content-addressed store, hash-verified

41 print(f"{prefix}{message}")
42
43 def print_green(self, message: str) -> None:
44 """Print message in green color."""
45 msg = f"{get_elapsed_str()} {message}"
46 if self.console:
47 self.console.print(msg, style="green")
48 else:
49 self._fallback_print(msg, "✅ ")
50
51 def print_yellow(self, message: str) -> None:
52 """Print message in yellow color."""

Callers 1

print_greenFunction · 0.80

Calls 3

_fallback_printMethod · 0.95
get_elapsed_strFunction · 0.85
printMethod · 0.45

Tested by

no test coverage detected