(self, line: int)
| 1566 | |
| 1567 | # Lacks a good type because there wasn't a reasonable type in 3.5 :( |
| 1568 | def catch_errors(self, line: int) -> Any: |
| 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) |
no test coverage detected