(self, signature)
| 127 | |
| 128 | class FilePatternMatcher(): |
| 129 | def __init__(self, signature): |
| 130 | self._signature = signature |
| 131 | self.__compiled = PatternMatcher.compile_patterns([signature])[0] |
| 132 | |
| 133 | def __repr__(self): |
| 134 | return f"<FilePatternMatcher({repr(self._signature)})>" |
nothing calls this directly
no test coverage detected