(self, shared_state: str)
| 31 | """ |
| 32 | |
| 33 | def __init__(self, shared_state: str) -> None: |
| 34 | self._shared_state = shared_state |
| 35 | |
| 36 | def operation(self, unique_state: str) -> None: |
| 37 | s = json.dumps(self._shared_state) |
nothing calls this directly
no outgoing calls
no test coverage detected