| 1 | # tableformat.py |
| 2 | |
| 3 | class TableFormatter: |
| 4 | def headings(self, headers): |
| 5 | ''' |
| 6 | Emit the table headers |
| 7 | ''' |
| 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 | ''' |
nothing calls this directly
no outgoing calls
no test coverage detected