(self, part)
| 108 | self._set_node(part, None) |
| 109 | |
| 110 | def _validate_node_name(self, part): |
| 111 | if part not in self.PARTS: |
| 112 | raise ValueError("Subnode name must be in [{}], not '{}'.".format(', '.join("'%s'" % p for p in self.PARTS), part)) |
| 113 | |
| 114 | @property |
| 115 | def path_tuple(self): |
no outgoing calls
no test coverage detected