Check if fastled_js is a parent directory of the given path.
(p: Path)
| 30 | |
| 31 | |
| 32 | def _fastled_js_is_parent_directory(p: Path) -> bool: |
| 33 | """Check if fastled_js is a parent directory of the given path.""" |
| 34 | # Check if fastled_js is a parent directory of p |
| 35 | return "fastled_js" in str(p.absolute()) |
| 36 | |
| 37 | |
| 38 | def compile_for_board_and_example( |
no outgoing calls
no test coverage detected