(
self, line: int | None, msg: str, code: ErrorCode | None = None, *, only_once: bool = False
)
| 1571 | self.errors.report(line, column, msg, code, blocker=blocker, only_once=only_once) |
| 1572 | |
| 1573 | def note( |
| 1574 | self, line: int | None, msg: str, code: ErrorCode | None = None, *, only_once: bool = False |
| 1575 | ) -> None: |
| 1576 | if line is None: |
| 1577 | line = column = -1 |
| 1578 | else: |
| 1579 | column = 0 |
| 1580 | self.errors.report(line, column, msg, code, severity="note", only_once=only_once) |
| 1581 | |
| 1582 | def note_multiline( |
| 1583 | self, line: int | None, msg: str, code: ErrorCode | None = None, *, only_once: bool = False |
no test coverage detected