1
0
mirror of https://github.com/no2chem/wideq.git synced 2025-05-17 07:40:09 -07:00

Whitespace fiddling

This commit is contained in:
Adrian Sampson 2019-07-23 16:18:16 -04:00
parent 4e54149a41
commit 7405d55f5b

View File

@ -4,12 +4,13 @@ import enum
from .client import Device from .client import Device
class ACVSwingMode(enum.Enum): class ACVSwingMode(enum.Enum):
"""The vertical swing mode for an AC/HVAC device. """The vertical swing mode for an AC/HVAC device.
Blades are numbered vertically from 1 (topmost) Blades are numbered vertically from 1 (topmost)
to 6. to 6.
All is 100. All is 100.
""" """
OFF = "@OFF" OFF = "@OFF"
@ -21,10 +22,11 @@ class ACVSwingMode(enum.Enum):
SIX = "@6" SIX = "@6"
ALL = "@100" ALL = "@100"
class ACHSwingMode(enum.Enum): class ACHSwingMode(enum.Enum):
"""The horizontal swing mode for an AC/HVAC device. """The horizontal swing mode for an AC/HVAC device.
Blades are numbered horizontally from 1 (leftmost) Blades are numbered horizontally from 1 (leftmost)
to 5. to 5.
Left half goes from 1-3, and right half goes from Left half goes from 1-3, and right half goes from
@ -42,6 +44,7 @@ class ACHSwingMode(enum.Enum):
RIGHT_HALF = "@35" RIGHT_HALF = "@35"
ALL = "@100" ALL = "@100"
class ACMode(enum.Enum): class ACMode(enum.Enum):
"""The operation mode for an AC/HVAC device.""" """The operation mode for an AC/HVAC device."""