Return (cell_id, cell_data) pairs in notebook order.
(self)
| 591 | return [self._cell_view(c) for c in self._doc.cells] |
| 592 | |
| 593 | def items(self) -> Sequence[tuple[CellId_t, NotebookCell]]: |
| 594 | """Return (cell_id, cell_data) pairs in notebook order.""" |
| 595 | return [(c.id, self._cell_view(c)) for c in self._doc.cells] |
| 596 | |
| 597 | # ------------------------------------------------------------------ |
| 598 | # Content search |
no test coverage detected