(self, path)
| 289 | raise ValueError(msg) |
| 290 | |
| 291 | def _create_required_groups(self, path): |
| 292 | if path not in self: |
| 293 | parent, missing = self.split_path(path) |
| 294 | # Call recursively to ensure that all parent groups exist. |
| 295 | self._create_required_groups(parent) |
| 296 | self.create_group(path) |
| 297 | |
| 298 | def remove_node(self, node_path): |
| 299 | """Remove node |
no test coverage detected