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

Function should_suppress_line

ci/util/output_formatter.py:84–93  ·  view source on GitHub ↗

Check if a line should be suppressed in verbose output. Args: line: The line to check Returns: True if the line should be suppressed, False otherwise

(line: str)

Source from the content-addressed store, hash-verified

82
83
84def should_suppress_line(line: str) -> bool:
85 """Check if a line should be suppressed in verbose output.
86
87 Args:
88 line: The line to check
89
90 Returns:
91 True if the line should be suppressed, False otherwise
92 """
93 return any(pattern.search(line) for pattern in VERBOSE_SUPPRESS_PATTERNS)
94
95
96class TimestampFormatter:

Callers 2

transformMethod · 0.85
filtering_echoFunction · 0.85

Calls 1

anyFunction · 0.85

Tested by

no test coverage detected