(self, rowdata)
| 49 | print('</tr>') |
| 50 | |
| 51 | def row(self, rowdata): |
| 52 | print('<tr>', end='') |
| 53 | for d in rowdata: |
| 54 | print(f'<td>{d}</td>', end='') |
| 55 | print('</tr>') |
| 56 | |
| 57 | class FormatError(Exception): |
| 58 | pass |
nothing calls this directly
no outgoing calls
no test coverage detected