11 lines
184 B
Python
11 lines
184 B
Python
from enum import Enum
|
|
|
|
class StackStatus(Enum):
|
|
"""
|
|
mapping codes for status vs text
|
|
"""
|
|
# pylint: disable=invalid-name
|
|
inactive = 1
|
|
running = 3
|
|
exited = 4
|