use numbers in HyperoptState properly ...

This commit is contained in:
Matthias 2022-08-19 15:40:06 +02:00
parent 733f716819
commit b9d48c3278

View File

@ -6,7 +6,7 @@ class HyperoptState(Enum):
STARTUP = 1
DATALOAD = 2
INDICATORS = 3
OPTIMIZE = 0
OPTIMIZE = 4
def __str__(self):
return f"{self.name.lower()}"