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

Method is_undone

src/commands/command_base.py:95–97  ·  view source on GitHub ↗

Check if command has been undone.

(self)

Source from the content-addressed store, hash-verified

93 return self._executed
94
95 def is_undone(self) -> bool:
96 """Check if command has been undone."""
97 return self._undone
98
99 def _mark_executed(self):
100 """Mark command as executed (internal use)."""

Calls

no outgoing calls