Return True if the cell raised an exception.
(self, cell_id: CellId_t)
| 913 | sys.stdout.write(line + "\n") |
| 914 | |
| 915 | def _cell_errored(self, cell_id: CellId_t) -> bool: |
| 916 | """Return True if the cell raised an exception.""" |
| 917 | cell = self.graph.cells.get(cell_id) |
| 918 | return cell is not None and cell.exception is not None |
| 919 | |
| 920 | def _cell_label(self, cell_id: CellId_t) -> str: |
| 921 | """Return a display label: `'id' (name)` or `'id'`.""" |