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

Method should_process_file

ci/util/check_files.py:127–136  ·  view source on GitHub ↗

Predicate to determine if a file should be processed. Args: file_path: Path to the file to check Returns: True if the file should be processed, False otherwise

(self, file_path: str)

Source from the content-addressed store, hash-verified

125
126 @abstractmethod
127 def should_process_file(self, file_path: str) -> bool:
128 """Predicate to determine if a file should be processed.
129
130 Args:
131 file_path: Path to the file to check
132
133 Returns:
134 True if the file should be processed, False otherwise
135 """
136 pass
137
138 @abstractmethod
139 def check_file_content(self, file_content: FileContent) -> list[str]:

Calls

no outgoing calls