Undo remove node.
(file_: "File", path: str)
| 104 | |
| 105 | |
| 106 | def undo_remove(file_: "File", path: str) -> None: |
| 107 | """Undo remove node.""" |
| 108 | move_from_shadow(file_, path) |
| 109 | |
| 110 | |
| 111 | def redo_remove(file_: "File", path: str) -> None: |
no test coverage detected