(self, value)
| 122 | without resetting the state of the machine. |
| 123 | """ |
| 124 | def __init__(self, value): |
| 125 | self.value = value |
| 126 | |
| 127 | def __str__(self): |
| 128 | return str(self.value) # This returns a str of the value because |
nothing calls this directly
no outgoing calls
no test coverage detected