(path: Path)
| 1030 | |
| 1031 | |
| 1032 | def _path_is_hidden(path: Path) -> bool: |
| 1033 | return any(part.startswith(".") for part in path.parts) |
| 1034 | |
| 1035 | |
| 1036 | def _is_excluded(relative_posix: str, exclude_patterns: Sequence[str]) -> bool: |
no outgoing calls
no test coverage detected