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

Method _format_paths

ci/util/output_formatter.py:165–170  ·  view source on GitHub ↗
(self, line: str)

Source from the content-addressed store, hash-verified

163 return None
164
165 def _format_paths(self, line: str) -> str:
166 result = line
167 for needle, replacement, compiled_pattern in self._substitutions:
168 if needle in result and compiled_pattern.search(result):
169 result = compiled_pattern.sub(replacement, result)
170 return result
171
172
173def create_filtering_echo_callback() -> Callable[[str], None]:

Callers 1

transformMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected