6 lines
57 B
Python
6 lines
57 B
Python
|
|
|
|
class StopState:
|
|
STOPPED = 1
|
|
RUNNING = 2
|
|
UNKNOWN = 3 |