Get the global state store instance.
()
| 427 | |
| 428 | |
| 429 | def get_state_store() -> StateStore: |
| 430 | """Get the global state store instance.""" |
| 431 | global _state_store |
| 432 | if _state_store is None: |
| 433 | _state_store = StateStore() |
| 434 | return _state_store |
| 435 | |
| 436 | |
| 437 | def reset_state_store(): |
no test coverage detected