(self)
| 80 | """ |
| 81 | |
| 82 | def __init__(self) -> None: |
| 83 | self._meta: dict = MetaObj.get_default_meta() |
| 84 | self._applied_operations: list = MetaObj.get_default_applied_operations() |
| 85 | self._pending_operations: list = MetaObj.get_default_applied_operations() # the same default as applied_ops |
| 86 | self._is_batch: bool = False |
| 87 | |
| 88 | @staticmethod |
| 89 | def flatten_meta_objs(*args: Iterable): |
nothing calls this directly
no test coverage detected