| 49 | print('</tr>') |
| 50 | |
| 51 | class ColumnFormatMixin: |
| 52 | formats = [] |
| 53 | def row(self, rowdata): |
| 54 | rowdata = [ (fmt % item) for fmt, item in zip(self.formats, rowdata)] |
| 55 | super().row(rowdata) |
| 56 | |
| 57 | class UpperHeadersMixin: |
| 58 | def headings(self, headers): |
nothing calls this directly
no outgoing calls
no test coverage detected