Add a list of SimpleTableRow objects to the list of rows.
(self, 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.""" |
| 259 | for row in rows: |
| 260 | self.rows.append(row) |
| 261 | |
| 262 | |
| 263 | class HTMLPage: |
nothing calls this directly
no outgoing calls
no test coverage detected