(self, msg: str, path: str, line: int)
| 16 | self.num_errors += 1 |
| 17 | |
| 18 | def note(self, msg: str, path: str, line: int) -> None: |
| 19 | self._errors.set_file(path, None, self._errors.options) |
| 20 | self._errors.report(line, None, msg, severity="note") |
| 21 | |
| 22 | def warning(self, msg: str, path: str, line: int) -> None: |
| 23 | self._errors.set_file(path, None, self._errors.options) |
no test coverage detected