Emit a single row of table data
(self, rowdata)
| 8 | raise NotImplementedError() |
| 9 | |
| 10 | def row(self, rowdata): |
| 11 | ''' |
| 12 | Emit a single row of table data |
| 13 | ''' |
| 14 | raise NotImplementedError() |
| 15 | |
| 16 | class TextTableFormatter(TableFormatter): |
| 17 | ''' |
no outgoing calls
no test coverage detected