diff --git a/custom_components/candy/client/model.py b/custom_components/candy/client/model.py index f685cb0..2fc02a4 100644 --- a/custom_components/candy/client/model.py +++ b/custom_components/candy/client/model.py @@ -75,12 +75,15 @@ def __str__(self): class DryerProgramState(Enum): STOPPED = 0 RUNNING = 2 + END = 3 def __str__(self): if self == DryerProgramState.STOPPED: return "Stopped" elif self == DryerProgramState.RUNNING: return "Running" + elif self == DryerProgramState.END: + return "End" else: return "%s" % self