mirror of
https://github.com/no2chem/wideq.git
synced 2025-05-16 07:10:09 -07:00
Whitespace fixes
This commit is contained in:
parent
0610d0f0b7
commit
78b48f0831
@ -2,7 +2,8 @@ import json
|
||||
import unittest
|
||||
|
||||
from wideq.client import Client, DeviceInfo
|
||||
from wideq.dishwasher import DishWasherDevice, DishWasherState, DishWasherStatus
|
||||
from wideq.dishwasher import DishWasherDevice, DishWasherState, \
|
||||
DishWasherStatus
|
||||
|
||||
POLL_DATA = {
|
||||
"16~19": "0",
|
||||
|
@ -14,6 +14,7 @@ class DishWasherState(enum.Enum):
|
||||
COMPLETE = '@DW_STATE_COMPLETE_W'
|
||||
POWER_FAIL = "@DW_STATE_POWER_FAIL_W"
|
||||
|
||||
|
||||
DISHWASHER_STATE_READABLE = {
|
||||
'INITIAL': 'Standby',
|
||||
'RUNNING': 'Running',
|
||||
@ -34,6 +35,7 @@ class DishWasherProcess(enum.Enum):
|
||||
NIGHT_DRYING = '@DW_STATE_NIGHTDRY_W'
|
||||
CANCELLED = '@DW_STATE_CANCEL_W'
|
||||
|
||||
|
||||
DISHWASHER_PROCESS_READABLE = {
|
||||
'RESERVE': 'Delayed Start',
|
||||
'RUNNING': DISHWASHER_STATE_READABLE['RUNNING'],
|
||||
@ -44,6 +46,7 @@ DISHWASHER_PROCESS_READABLE = {
|
||||
'CANCELLED': 'Cancelled',
|
||||
}
|
||||
|
||||
|
||||
# Provide a map to correct typos in the official course names.
|
||||
DISHWASHER_COURSE_MAP = {
|
||||
'Haeavy': 'Heavy',
|
||||
|
Loading…
x
Reference in New Issue
Block a user