(self, state: str)
| 39 | """ |
| 40 | |
| 41 | def __init__(self, state: str) -> None: |
| 42 | self._state = state |
| 43 | print(f"Originator: My initial state is: {self._state}") |
| 44 | |
| 45 | def do_something(self) -> None: |
| 46 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected