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/disabled.py | |
parent | 015baee6d719723672037b0ea738106fbd2c8198 (diff) |
removed processing flag
Diffstat (limited to 'kvmd/plugins/atx/disabled.py')
-rw-r--r-- | kvmd/plugins/atx/disabled.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/kvmd/plugins/atx/disabled.py b/kvmd/plugins/atx/disabled.py index c60e2743..ba5bf1f0 100644 --- a/kvmd/plugins/atx/disabled.py +++ b/kvmd/plugins/atx/disabled.py @@ -54,12 +54,8 @@ class Plugin(BaseAtx): # ===== - async def __stub_power(self, wait: bool) -> bool: + async def __stub(self, wait: bool) -> None: raise AtxDisabledError() - power_on = power_off = power_off_hard = power_reset_hard = __stub_power - - async def __stub_click(self, wait: bool) -> None: - raise AtxDisabledError() - - click_power = click_power_long = click_reset = __stub_click + power_on = power_off = power_off_hard = power_reset_hard = __stub + click_power = click_power_long = click_reset = __stub |