MCPcopy Create free account
hub / github.com/bhowiebkr/PyFlowGraph / redo_last_command

Method redo_last_command

src/core/node_graph.py:72–78  ·  view source on GitHub ↗

Redo the last undone command.

(self)

Source from the content-addressed store, hash-verified

70 return False
71
72 def redo_last_command(self):
73 """Redo the last undone command."""
74 description = self.command_history.redo()
75 if description:
76 self.commandRedone.emit(description)
77 return True
78 return False
79
80 def can_undo(self):
81 """Check if undo is available."""

Calls 1

redoMethod · 0.45