(relative_posix: str, exclude_patterns: Sequence[str])
| 1034 | |
| 1035 | |
| 1036 | def _is_excluded(relative_posix: str, exclude_patterns: Sequence[str]) -> bool: |
| 1037 | for pattern in exclude_patterns: |
| 1038 | if fnmatch.fnmatch(relative_posix, pattern): |
| 1039 | return True |
| 1040 | return False |
| 1041 | |
| 1042 | |
| 1043 | def _read_file_lines_for_search(path: Path) -> List[str]: |
no outgoing calls
no test coverage detected