(self, visdir, title)
| 34 | """ |
| 35 | |
| 36 | def __init__(self, visdir, title): |
| 37 | self.visdir = visdir |
| 38 | self.title = title |
| 39 | |
| 40 | self._index_file = None |
| 41 | self._table_counter = 0 |
| 42 | self._row_counter = 0 |
| 43 | |
| 44 | self._current_columns = None |
| 45 | |
| 46 | @contextlib.contextmanager |
| 47 | def html(self): |
nothing calls this directly
no outgoing calls
no test coverage detected