summaryrefslogtreecommitdiff
path: root/kvmd/plugins/atx/__init__.py
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-09-09 16:21:49 +0300
committerDevaev Maxim <[email protected]>2020-09-09 16:21:49 +0300
commit015baee6d719723672037b0ea738106fbd2c8198 (patch)
tree9e3c4eaf8029fe9baec611323773c7a399986cd5 /kvmd/plugins/atx/__init__.py
parent2d44539484c56c6300a582ea026728442d9bc618 (diff)
sync atx api
Diffstat (limited to 'kvmd/plugins/atx/__init__.py')
-rw-r--r--kvmd/plugins/atx/__init__.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/kvmd/plugins/atx/__init__.py b/kvmd/plugins/atx/__init__.py
index bc0c2c41..5de306ea 100644
--- a/kvmd/plugins/atx/__init__.py
+++ b/kvmd/plugins/atx/__init__.py
@@ -59,27 +59,27 @@ class BaseAtx(BasePlugin):
# =====
- async def power_on(self) -> bool:
+ async def power_on(self, wait: bool) -> bool:
raise NotImplementedError
- async def power_off(self) -> bool:
+ async def power_off(self, wait: bool) -> bool:
raise NotImplementedError
- async def power_off_hard(self) -> bool:
+ async def power_off_hard(self, wait: bool) -> bool:
raise NotImplementedError
- async def power_reset_hard(self) -> bool:
+ async def power_reset_hard(self, wait: bool) -> bool:
raise NotImplementedError
# =====
- async def click_power(self) -> None:
+ async def click_power(self, wait: bool) -> None:
raise NotImplementedError
- async def click_power_long(self) -> None:
+ async def click_power_long(self, wait: bool) -> None:
raise NotImplementedError
- async def click_reset(self) -> None:
+ async def click_reset(self, wait: bool) -> None:
raise NotImplementedError