(self, msg: str, line: int)
| 1569 | return catch_errors(self.module_path, line) |
| 1570 | |
| 1571 | def warning(self, msg: str, line: int) -> None: |
| 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) |
no outgoing calls
no test coverage detected