(self, parent)
| 162 | |
| 163 | class Container(ParsingItem): |
| 164 | def __init__(self, parent): |
| 165 | super().__init__(parent) |
| 166 | self.children = [] |
| 167 | self.depth = 0 |
| 168 | self.depth = 0 |
| 169 | def parseChildren(self, table, tableIndex, variableDescriptions): |
| 170 | # Get the initial depth |
| 171 | t0_full = table.cell(0, tableIndex).text |