15 lines
185 B
Python
15 lines
185 B
Python
|
# pragma pylint: disable=too-few-public-methods
|
||
|
|
||
|
"""
|
||
|
Bot state constant
|
||
|
"""
|
||
|
import enum
|
||
|
|
||
|
|
||
|
class State(enum.Enum):
|
||
|
"""
|
||
|
Bot running states
|
||
|
"""
|
||
|
RUNNING = 0
|
||
|
STOPPED = 1
|