(self, headers)
| 18 | Output data in plain-text format. |
| 19 | ''' |
| 20 | def headings(self, headers): |
| 21 | for h in headers: |
| 22 | print(f'{h:>10s}', end=' ') |
| 23 | print() |
| 24 | print(('-'*10 + ' ')*len(headers)) |
| 25 | |
| 26 | def row(self, rowdata): |
| 27 | for d in rowdata: |
nothing calls this directly
no outgoing calls
no test coverage detected