(self, nodepath: str)
| 1734 | return elink |
| 1735 | |
| 1736 | def _get_node(self, nodepath: str) -> Node | RootGroup: |
| 1737 | # The root node is always at hand. |
| 1738 | if nodepath == "/": |
| 1739 | return self.root |
| 1740 | |
| 1741 | node = self._node_manager.get_node(nodepath) |
| 1742 | assert node is not None, "unable to instantiate node ``%s``" % nodepath |
| 1743 | |
| 1744 | return node |
| 1745 | |
| 1746 | def get_node( |
| 1747 | self, |
no test coverage detected