(self, name: str)
| 47 | return self._state_cache[self._current_context] |
| 48 | |
| 49 | def set_context(self, name: str) -> None: |
| 50 | self._current_context = name |
| 51 | |
| 52 | def reset(self, *args, **kwargs) -> None: |
| 53 | for name, state in list(self._state_cache.items()): |
no outgoing calls
no test coverage detected