removed processing flag

This commit is contained in:
Devaev Maxim
2020-09-10 04:48:19 +03:00
parent 015baee6d7
commit 31fdcd2f3c
4 changed files with 13 additions and 25 deletions

View File

@@ -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
# =====