(paths: set[str], exclude_patterns: set[str])
| 61 | |
| 62 | |
| 63 | def _remove_by_pattern(paths: set[str], exclude_patterns: set[str]) -> None: |
| 64 | for pattern in exclude_patterns: |
| 65 | paths.difference_update(fnmatch.filter(paths, pattern)) |
| 66 | |
| 67 | |
| 68 | def _find_stat_paths( |
no outgoing calls
no test coverage detected