Add a list of SimpleTableCell objects to the list of cells.
(self, cells)
| 180 | self.cells.append(cell) |
| 181 | |
| 182 | def add_cells(self, cells): |
| 183 | """Add a list of SimpleTableCell objects to the list of cells.""" |
| 184 | for cell in cells: |
| 185 | self.cells.append(cell) |
| 186 | |
| 187 | |
| 188 | class SimpleTable: |
nothing calls this directly
no outgoing calls
no test coverage detected