diff options
author | Devaev Maxim <[email protected]> | 2020-09-10 04:48:19 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-09-10 04:48:19 +0300 |
commit | 31fdcd2f3c9284cf72d6b92d51b88273d50e8dc1 (patch) | |
tree | a91720c1d012a3fc71920622b60ea029686a18f4 /kvmd/plugins/atx/__init__.py | |
parent | 015baee6d719723672037b0ea738106fbd2c8198 (diff) |
removed processing flag
Diffstat (limited to 'kvmd/plugins/atx/__init__.py')
-rw-r--r-- | kvmd/plugins/atx/__init__.py | 8 |
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 # ===== |