Emit the table headers
(self, headers)
| 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 | ''' |
no outgoing calls
no test coverage detected