Get the delta for the state after resolving all coroutines. Returns: The resolved delta for the state.
(self)
| 1891 | return delta |
| 1892 | |
| 1893 | async def _get_resolved_delta(self) -> Delta: |
| 1894 | """Get the delta for the state after resolving all coroutines. |
| 1895 | |
| 1896 | Returns: |
| 1897 | The resolved delta for the state. |
| 1898 | """ |
| 1899 | return await _resolve_delta(self.get_delta()) |
| 1900 | |
| 1901 | def _mark_dirty(self): |
| 1902 | """Mark the substate and all parent states as dirty.""" |
no test coverage detected