(self, rowdata)
| 24 | print(('-'*10 + ' ')*len(headers)) |
| 25 | |
| 26 | def row(self, rowdata): |
| 27 | for d in rowdata: |
| 28 | print(f'{d:>10s}', end=' ') |
| 29 | print() |
| 30 | |
| 31 | class CSVTableFormatter(TableFormatter): |
| 32 | ''' |
nothing calls this directly
no outgoing calls
no test coverage detected