mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
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
|