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

Method can_undo

src/core/node_graph.py:80–82  ·  view source on GitHub ↗

Check if undo is available.

(self)

Source from the content-addressed store, hash-verified

78 return False
79
80 def can_undo(self):
81 """Check if undo is available."""
82 return self.command_history.can_undo()
83
84 def can_redo(self):
85 """Check if redo is available."""

Calls

no outgoing calls