Method
_f_move
(
self,
newparent: Group | None = None,
newname: str | None = None,
createparents: bool = False,
)
Source from the content-addressed store, hash-verified
| 1236 | raise NodeError("the root node can not be renamed") |
| 1237 | |
| 1238 | def _f_move( |
| 1239 | self, |
| 1240 | newparent: Group | None = None, |
| 1241 | newname: str | None = None, |
| 1242 | createparents: bool = False, |
| 1243 | ) -> NoReturn: |
| 1244 | raise NodeError("the root node can not be moved") |
| 1245 | |
| 1246 | def _f_remove(self, recursive: bool = False) -> NoReturn: |
| 1247 | raise NodeError("the root node can not be removed") |
Callers
nothing calls this directly
Tested by
no test coverage detected