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

Method can_redo

src/core/node_graph.py:84–86  ·  view source on GitHub ↗

Check if redo is available.

(self)

Source from the content-addressed store, hash-verified

82 return self.command_history.can_undo()
83
84 def can_redo(self):
85 """Check if redo is available."""
86 return self.command_history.can_redo()
87
88 def get_undo_description(self):
89 """Get description of next undo operation."""

Calls

no outgoing calls