(self)
| 40 | self._client = client |
| 41 | |
| 42 | def load(self) -> None: |
| 43 | self._append_node(id=self._url, parent_id=None) |
| 44 | self._build_tree(url=self._url, depth=self._depth) |
| 45 | |
| 46 | def _append_node(self, id: str, parent_id: str | None) -> None: |
| 47 | """ |
no test coverage detected