forked from platypush/platypush
Only return the first element of status()
This commit is contained in:
parent
69e702ed0c
commit
25894d3c00
1 changed files with 2 additions and 2 deletions
|
@ -127,7 +127,7 @@ class SwitchWemoPlugin(SwitchPlugin):
|
||||||
:param device: Device name or address
|
:param device: Device name or address
|
||||||
"""
|
"""
|
||||||
self._exec(device=device, action=SwitchAction.SET_STATE, value=1)
|
self._exec(device=device, action=SwitchAction.SET_STATE, value=1)
|
||||||
return self.status(device)
|
return self.status(device).output[0]
|
||||||
|
|
||||||
@action
|
@action
|
||||||
def off(self, device: str, **kwargs):
|
def off(self, device: str, **kwargs):
|
||||||
|
@ -137,7 +137,7 @@ class SwitchWemoPlugin(SwitchPlugin):
|
||||||
:param device: Device name or address
|
:param device: Device name or address
|
||||||
"""
|
"""
|
||||||
self._exec(device=device, action=SwitchAction.SET_STATE, value=0)
|
self._exec(device=device, action=SwitchAction.SET_STATE, value=0)
|
||||||
return self.status(device)
|
return self.status(device).output[0]
|
||||||
|
|
||||||
@action
|
@action
|
||||||
def toggle(self, device: str, *args, **kwargs):
|
def toggle(self, device: str, *args, **kwargs):
|
||||||
|
|
Loading…
Reference in a new issue