Iterate through table rows
(self)
| 247 | return "\n".join(table) |
| 248 | |
| 249 | def __iter__(self): |
| 250 | """Iterate through table rows""" |
| 251 | yield from self.rows |
| 252 | |
| 253 | def add_row(self, row): |
| 254 | """Add a SimpleTableRow object to the list of rows.""" |
nothing calls this directly
no outgoing calls
no test coverage detected