Get the pending operations. Defaults to ``[]``.
(self)
| 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: |
nothing calls this directly
no test coverage detected