(self, t: Any)
| 203 | self._applied_operations = t |
| 204 | |
| 205 | def push_applied_operation(self, t: Any) -> None: |
| 206 | self._applied_operations.append(t) |
| 207 | |
| 208 | def pop_applied_operation(self) -> Any: |
| 209 | return self._applied_operations.pop() |
no test coverage detected