summaryrefslogtreecommitdiff
path: root/kvmd/plugins/atx/__init__.py
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-09-10 04:48:19 +0300
committerDevaev Maxim <[email protected]>2020-09-10 04:48:19 +0300
commit31fdcd2f3c9284cf72d6b92d51b88273d50e8dc1 (patch)
treea91720c1d012a3fc71920622b60ea029686a18f4 /kvmd/plugins/atx/__init__.py
parent015baee6d719723672037b0ea738106fbd2c8198 (diff)
removed processing flag
Diffstat (limited to 'kvmd/plugins/atx/__init__.py')
-rw-r--r--kvmd/plugins/atx/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/kvmd/plugins/atx/__init__.py b/kvmd/plugins/atx/__init__.py
index 5de306ea..e600aa16 100644
--- a/kvmd/plugins/atx/__init__.py
+++ b/kvmd/plugins/atx/__init__.py
@@ -59,16 +59,16 @@ class BaseAtx(BasePlugin):
# =====
- async def power_on(self, wait: bool) -> bool:
+ async def power_on(self, wait: bool) -> None:
raise NotImplementedError
- async def power_off(self, wait: bool) -> bool:
+ async def power_off(self, wait: bool) -> None:
raise NotImplementedError
- async def power_off_hard(self, wait: bool) -> bool:
+ async def power_off_hard(self, wait: bool) -> None:
raise NotImplementedError
- async def power_reset_hard(self, wait: bool) -> bool:
+ async def power_reset_hard(self, wait: bool) -> None:
raise NotImplementedError
# =====