8 lines
131 B
Python
8 lines
131 B
Python
|
from enum import Enum
|
||
|
|
||
|
class StackStatus(Enum):
|
||
|
# pylint: disable=invalid-name
|
||
|
inactive = 1
|
||
|
running = 3
|
||
|
exited = 4
|