(self, headers)
| 43 | Output data in HTML format. |
| 44 | ''' |
| 45 | def headings(self, headers): |
| 46 | print('<tr>', end='') |
| 47 | for h in headers: |
| 48 | print(f'<th>{h}</th>', end='') |
| 49 | print('</tr>') |
| 50 | |
| 51 | def row(self, rowdata): |
| 52 | print('<tr>', end='') |
nothing calls this directly
no outgoing calls
no test coverage detected