MCPcopy Create free account
hub / github.com/Project-MONAI/MONAI / pending_operations

Method pending_operations

monai/data/meta_obj.py:212–216  ·  view source on GitHub ↗

Get the pending operations. Defaults to ``[]``.

(self)

Source from the content-addressed store, hash-verified

210
211 @property
212 def pending_operations(self) -> list[dict]:
213 """Get the pending operations. Defaults to ``[]``."""
214 if hasattr(self, "_pending_operations"):
215 return self._pending_operations
216 return MetaObj.get_default_applied_operations() # the same default as applied_ops
217
218 @property
219 def has_pending_operations(self) -> bool:

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected