28 lines
691 B
Python
28 lines
691 B
Python
"""Spook - Your homie."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import random
|
|
from typing import TYPE_CHECKING
|
|
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
from ....const import DOMAIN
|
|
from ....services import AbstractSpookService
|
|
|
|
if TYPE_CHECKING:
|
|
from homeassistant.core import ServiceCall
|
|
|
|
|
|
class SpookService(AbstractSpookService):
|
|
"""Spook service to randomly fail a service call."""
|
|
|
|
domain = DOMAIN
|
|
service = "random_fail"
|
|
|
|
async def async_handle_service(self, _: ServiceCall) -> None:
|
|
"""Handle the service call."""
|
|
if random.choice([True, False]): # noqa: S311
|
|
msg = "Spooked!"
|
|
raise HomeAssistantError(msg)
|