MCPcopy Create free account
hub / github.com/enthought/apptools / _create_required_groups

Method _create_required_groups

apptools/io/h5/file.py:291–296  ·  view source on GitHub ↗
(self, path)

Source from the content-addressed store, hash-verified

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

Callers 1

_check_nodeMethod · 0.95

Calls 2

split_pathMethod · 0.95
create_groupMethod · 0.95

Tested by

no test coverage detected