From 4d3d50a07c94d80580e66587af1ff2d9b027209b Mon Sep 17 00:00:00 2001 From: ankushduacodes <61025943+ankushduacodes@users.noreply.github.com> Date: Mon, 15 Jun 2020 08:30:39 +0530 Subject: [PATCH] Updated JET mode names in ac.py simplified JET mode names and fixed doc strings --- wideq/ac.py | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/wideq/ac.py b/wideq/ac.py index 06a1c2d..1a08070 100644 --- a/wideq/ac.py +++ b/wideq/ac.py @@ -8,25 +8,21 @@ from .core import FailedRequestError class ACJetMode(enum.Enum): - """To turn on the jet mode. This mode - puts your AC into highest cooling or - dry or heat mode(for a certain amount of time) - depending on what you choose + """JET mode puts your AC into highest cooling or dry or + heat mode(for a certain amount of time) depending on what you choose This mode Overrides following setting: 1. Vertical swing is set to @100 - 2. Temperature gets set to 18 after - jet mode turns off - 3. Fan speed is set to HIGH - (@AC_MAIN_WIND_STRENGTH_HIGH_W) + 2. Temperature gets set to 18 after jet mode turns off + 3. Fan speed is set to HIGH (@AC_MAIN_WIND_STRENGTH_HIGH_W) after jet mode turns off """ OFF = "@OFF" - COOL_JET = "@COOL_JET" - HEAT_JET = "@HEAT_JET" - DRY_JET = "@DRY_JET_W" - HIM_COOL = "@HIMALAYAS_COOL" + COOL = "@COOL_JET" + HEAT = "@HEAT_JET" + DRY = "@DRY_JET_W" + HIMALAYAS = "@HIMALAYAS_COOL" class ACVSwingMode(enum.Enum):