| 52 | |
| 53 | |
| 54 | class MachineState: |
| 55 | WRITE = "write" |
| 56 | READ = "read" |
| 57 | READ_WRITE = "read_write" |
| 58 | STYLEALIGN = "stylealign" |
| 59 | OFF = "off" |
| 60 | |
| 61 | def is_read(state: str): |
| 62 | return state in [MachineState.READ, MachineState.READ_WRITE] |
nothing calls this directly
no outgoing calls
no test coverage detected