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

Don't import stdlib typing types from helpers.typing (#49104)

This commit is contained in:
Marc Mueller
2021-04-12 18:43:14 +02:00
committed by GitHub
parent f5545badac
commit 106dc4d28a
8 changed files with 42 additions and 24 deletions

View File

@@ -1,6 +1,9 @@
"""The tests the cover command line platform."""
from __future__ import annotations
import os
import tempfile
from typing import Any
from unittest.mock import patch
from homeassistant import config as hass_config, setup
@@ -12,14 +15,14 @@ from homeassistant.const import (
SERVICE_RELOAD,
SERVICE_STOP_COVER,
)
from homeassistant.helpers.typing import Any, Dict, HomeAssistantType
from homeassistant.helpers.typing import HomeAssistantType
import homeassistant.util.dt as dt_util
from tests.common import async_fire_time_changed
async def setup_test_entity(
hass: HomeAssistantType, config_dict: Dict[str, Any]
hass: HomeAssistantType, config_dict: dict[str, Any]
) -> None:
"""Set up a test command line notify service."""
assert await setup.async_setup_component(