(rel_path: str, exclude_patterns: list[str])
| 420 | |
| 421 | |
| 422 | def is_excluded(rel_path: str, exclude_patterns: list[str]) -> bool: |
| 423 | return any(fnmatch.fnmatch(rel_path, pat) for pat in exclude_patterns) |
| 424 | |
| 425 | |
| 426 | def file_kind(path: Path) -> str: |
no outgoing calls
no test coverage detected