Iterate through row cells
(self)
| 172 | return "\n".join(row) |
| 173 | |
| 174 | def __iter__(self): |
| 175 | """Iterate through row cells""" |
| 176 | yield from self.cells |
| 177 | |
| 178 | def add_cell(self, cell): |
| 179 | """Add a SimpleTableCell object to the list of cells.""" |
nothing calls this directly
no outgoing calls
no test coverage detected