Get the applied operations. Defaults to ``[]``.
(self)
| 188 | |
| 189 | @property |
| 190 | def applied_operations(self) -> list[dict]: |
| 191 | """Get the applied operations. Defaults to ``[]``.""" |
| 192 | if hasattr(self, "_applied_operations"): |
| 193 | return self._applied_operations |
| 194 | return MetaObj.get_default_applied_operations() |
| 195 | |
| 196 | @applied_operations.setter |
| 197 | def applied_operations(self, t) -> None: |
nothing calls this directly
no test coverage detected