(raw: str)
| 185 | |
| 186 | |
| 187 | def normalize_patterns(raw: str) -> List[str]: |
| 188 | if not raw.strip(): |
| 189 | return [] |
| 190 | parts = [p.strip() for p in raw.split(",")] |
| 191 | return [p for p in parts if p] |
| 192 | |
| 193 | |
| 194 | def match_any(path: Path, name: str, patterns: List[str]) -> bool: |
no outgoing calls
no test coverage detected