summaryrefslogtreecommitdiff
path: root/smart_home/outlets.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-02-26 22:41:58 -0800
committerScott Gasch <[email protected]>2022-02-26 22:41:58 -0800
commit7dd95b88a2a1a977506300f337e4b50a2df13141 (patch)
treec9fdbb920e1fb94fadd253aef5601d4b40c8c367 /smart_home/outlets.py
parent4863b00af3b2ddcfaa2e5f47fd6dd7e95c1eb6c5 (diff)
Rename a method, cleanup lint errors.
Diffstat (limited to 'smart_home/outlets.py')
-rw-r--r--smart_home/outlets.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/smart_home/outlets.py b/smart_home/outlets.py
index b9bfe22..3765567 100644
--- a/smart_home/outlets.py
+++ b/smart_home/outlets.py
@@ -87,7 +87,7 @@ class TPLinkOutlet(BaseOutlet):
cmd = self.get_cmdline() + f"-c {cmd}"
if extra_args is not None:
cmd += f" {extra_args}"
- return tplink.tplink_command(cmd)
+ return tplink.tplink_command_wrapper(cmd)
@overrides
def turn_on(self) -> bool:
@@ -152,7 +152,7 @@ class TPLinkOutletWithChildren(TPLinkOutlet):
if extra_args is not None:
cmd += f" {extra_args}"
logger.debug('About to execute: %s', cmd)
- return tplink.tplink_command(cmd)
+ return tplink.tplink_command_wrapper(cmd)
def get_children(self) -> List[str]:
return self.children