Files
HomeAssistantVS/custom_components/spook/ectoplasms/homeassistant/services/delete_floor.py
T
2026-07-20 22:52:35 -04:00

29 lines
814 B
Python

"""Spook - Your homie."""
from __future__ import annotations
from typing import TYPE_CHECKING
import voluptuous as vol
from homeassistant.components.homeassistant import DOMAIN
from homeassistant.helpers import config_validation as cv, floor_registry as fr
from ....services import AbstractSpookAdminService
if TYPE_CHECKING:
from homeassistant.core import ServiceCall
class SpookService(AbstractSpookAdminService):
"""Home Assistant floor service to delete floors on the fly."""
domain = DOMAIN
service = "delete_floor"
schema = {vol.Required("floor_id"): cv.string}
async def async_handle_service(self, call: ServiceCall) -> None:
"""Handle the service call."""
floor_registry = fr.async_get(self.hass)
floor_registry.async_delete(call.data["floor_id"])