(self, headers)
| 37 | |
| 38 | class HTMLTableFormatter(TableFormatter): |
| 39 | def headings(self, headers): |
| 40 | print('<tr>', end=' ') |
| 41 | for h in headers: |
| 42 | print('<th>%s</th>' % h, end=' ') |
| 43 | print('</tr>') |
| 44 | |
| 45 | def row(self, rowdata): |
| 46 | print('<tr>', end=' ') |
nothing calls this directly
no outgoing calls
no test coverage detected