Add a SimpleTableRow object to the list of rows.
(self, row)
| 251 | yield from self.rows |
| 252 | |
| 253 | def add_row(self, row): |
| 254 | """Add a SimpleTableRow object to the list of rows.""" |
| 255 | self.rows.append(row) |
| 256 | |
| 257 | def add_rows(self, rows): |
| 258 | """Add a list of SimpleTableRow objects to the list of rows.""" |
no outgoing calls
no test coverage detected