diff options
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 # ===== |