mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-29 00:51:53 +08:00
removed processing flag
This commit is contained in:
@@ -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
|
||||
|
||||
# =====
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -130,29 +130,21 @@ class Plugin(BaseAtx): # pylint: disable=too-many-instance-attributes
|
||||
|
||||
# =====
|
||||
|
||||
async def power_on(self, wait: bool) -> bool:
|
||||
async def power_on(self, wait: bool) -> None:
|
||||
if not (await self.__get_power()):
|
||||
await self.click_power(wait)
|
||||
return True
|
||||
return False
|
||||
|
||||
async def power_off(self, wait: bool) -> bool:
|
||||
async def power_off(self, wait: bool) -> None:
|
||||
if (await self.__get_power()):
|
||||
await self.click_power(wait)
|
||||
return True
|
||||
return False
|
||||
|
||||
async def power_off_hard(self, wait: bool) -> bool:
|
||||
async def power_off_hard(self, wait: bool) -> None:
|
||||
if (await self.__get_power()):
|
||||
await self.click_power_long(wait)
|
||||
return True
|
||||
return False
|
||||
|
||||
async def power_reset_hard(self, wait: bool) -> bool:
|
||||
async def power_reset_hard(self, wait: bool) -> None:
|
||||
if (await self.__get_power()):
|
||||
await self.click_reset(wait)
|
||||
return True
|
||||
return False
|
||||
|
||||
# =====
|
||||
|
||||
|
||||
Reference in New Issue
Block a user