Triggers a data load in the child nodes
(self)
| 130 | self.models.append(child_models) |
| 131 | |
| 132 | async def load_data(self) -> None: |
| 133 | """ |
| 134 | Triggers a data load in the child nodes |
| 135 | """ |
| 136 | for child in self.children: |
| 137 | await child.load_data() |
| 138 | |
| 139 | def reload_tree(self) -> None: |
| 140 | """ |