Undo create node.
(file_: "File", path: str)
| 94 | |
| 95 | |
| 96 | def undo_create(file_: "File", path: str) -> None: |
| 97 | """Undo create node.""" |
| 98 | move_to_shadow(file_, path) |
| 99 | |
| 100 | |
| 101 | def redo_create(file_: "File", path: str) -> None: |
no test coverage detected