(self, pattern, working_dir)
| 285 | |
| 286 | class SingleFileMatcher: |
| 287 | def __init__(self, pattern, working_dir): |
| 288 | self.pattern = self._normalize_pattern(pattern, working_dir) |
| 289 | |
| 290 | def has_match(self, absolute_path): |
| 291 | if '*' not in self.pattern: |
nothing calls this directly
no test coverage detected