(self, msg: str, line: int)
| 1572 | self.errors.warning(msg, self.module_path, line) |
| 1573 | |
| 1574 | def error(self, msg: str, line: int) -> None: |
| 1575 | self.errors.error(msg, self.module_path, line) |
| 1576 | |
| 1577 | def note(self, msg: str, line: int) -> None: |
| 1578 | self.errors.note(msg, self.module_path, line) |
no outgoing calls
no test coverage detected