(self, line: str, matches: List[str])
| 50 | self._caught_matches = set() |
| 51 | |
| 52 | def _lookup_matches(self, line: str, matches: List[str]) -> bool: |
| 53 | for m in matches: |
| 54 | if re.match(m, line): |
| 55 | return True |
| 56 | return False |
| 57 | |
| 58 | def _lookup_lognos(self, line: str, lognos: set) -> bool: |
| 59 | if len(lognos) > 0: |
no outgoing calls
no test coverage detected