(self, headers)
| 21 | |
| 22 | class TextTableFormatter(TableFormatter): |
| 23 | def headings(self, headers): |
| 24 | print(' '.join('%10s' % h for h in headers)) |
| 25 | print(('-'*10 + ' ')*len(headers)) |
| 26 | |
| 27 | def row(self, rowdata): |
| 28 | print(' '.join('%10s' % d for d in rowdata)) |
nothing calls this directly
no outgoing calls
no test coverage detected