More sensible bool values for enums
This commit is contained in:
+2
-2
@@ -33,14 +33,14 @@ class PumpDryStatus(ParameterEnum):
|
||||
INACTIVE_OR_ACTIVE_WITH_FLUID = 4
|
||||
|
||||
def __bool__(self):
|
||||
return self.value == 4
|
||||
return self.value == 1
|
||||
|
||||
class PumpOverloadStatus(ParameterEnum):
|
||||
ACTIVE_AND_OVERLOAD = 1
|
||||
INACTIVE_OR_ACTIVE_NO_OVERLOAD = 4
|
||||
|
||||
def __bool__(self):
|
||||
return self.value == 4
|
||||
return self.value == 1
|
||||
|
||||
class BreakerStatus(ParameterEnum):
|
||||
OPEN = True
|
||||
|
||||
Reference in New Issue
Block a user