You canât undo a save as the file has âescapedâ from SketchUpâs control !
If you want to change the model, then save it, but then discard those changes, then you need to use this formatâŚ
### Point A
model.start_operation("SomeOperation", true)
### Make some changes to the model
### Make a copy of the changed model
model.abort_operation
### Point B
That should change the model, make a copy of it [including the changes], but then by âPoint Bâ it has returned the model to the state it was at âPoint Aâ.