1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 04:50:05 +00:00

Update typing (1) (#63922)

This commit is contained in:
Marc Mueller
2022-01-11 21:26:03 +01:00
committed by GitHub
parent 4e2cd1bec0
commit d3b7bd25ef
11 changed files with 30 additions and 30 deletions

View File

@@ -4,7 +4,7 @@ from __future__ import annotations
from collections.abc import Callable, Iterable
import logging
import re
from typing import Any, Dict
from typing import Any
import voluptuous as vol
@@ -16,7 +16,7 @@ from homeassistant.loader import bind_hass
from . import config_validation as cv
_LOGGER = logging.getLogger(__name__)
_SlotsType = Dict[str, Any]
_SlotsType = dict[str, Any]
INTENT_TURN_OFF = "HassTurnOff"
INTENT_TURN_ON = "HassTurnOn"