1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00

Add first batch of Ruff PYI rules (#115100)

Co-authored-by: Jan Bouwhuis <jbouwh@users.noreply.github.com>
This commit is contained in:
Sid
2024-04-07 23:30:50 +02:00
committed by GitHub
parent 569f54d8e3
commit 8e98ba7312
27 changed files with 44 additions and 55 deletions

View File

@@ -10,7 +10,7 @@ from dataclasses import dataclass
from enum import Enum
from functools import cached_property
import logging
from typing import Any, TypeVar
from typing import Any
import voluptuous as vol
@@ -34,7 +34,6 @@ from . import (
_LOGGER = logging.getLogger(__name__)
_SlotsType = dict[str, Any]
_T = TypeVar("_T")
INTENT_TURN_OFF = "HassTurnOff"
INTENT_TURN_ON = "HassTurnOn"