change typo "reboot" to "restart"

This commit is contained in:
Mathieu B 2023-04-06 18:53:44 +02:00
parent 138a9eec7b
commit 7bf802c82f
2 changed files with 4 additions and 4 deletions

View File

@ -24,8 +24,8 @@ send_magic_packet:
min: 1
max: 65535
restart_to_windows_from_linux:
name: Reboot to Windows from Linux
description: Reboot the computer to Windows when running Linux using Grub.
name: Restart to Windows from Linux
description: Restart the computer to Windows when running Linux using Grub.
target:
device:
integration: easy_computer_manage

View File

@ -198,12 +198,12 @@ class ComputerSwitch(SwitchEntity):
if self._dualboot:
# Wait for the computer to boot using a dedicated thread to avoid blocking the main thread
self._hass.loop.create_task(self.reboot_computer_to_windows_when_on())
self._hass.loop.create_task(self.restart_computer_to_windows_when_on())
else:
_LOGGER.error("This computer is not running a dualboot system.")
async def reboot_computer_to_windows_when_on(self) -> None:
async def restart_computer_to_windows_when_on(self) -> None:
"""Method to be run in a separate thread to wait for the computer to boot and then reboot to Windows."""
while not self.is_on:
await asyncio.sleep(3)