Add an index s to the table.
(self, s)
| 58 | self.row_count += 1 |
| 59 | if self.col_count > self.max_col_count: |
| 60 | self.max_col_count = self.col_count |
| 61 | self.col_count = 0 |
| 62 | |
| 63 | def check_add_new_line(self): |
| 64 | """ Check if a new line should be added to the table, and if so add it and sets the 'add_new_line_flag' to False.""" |
| 65 | if self.add_new_line_flag: |
| 66 | self.add_row() |
| 67 | self.add_new_line_flag = False |
nothing calls this directly
no test coverage detected