* Device tracker component & platform validation. No more home_range. * Mock, bluetooth * Renamed _CONFIG_SCHEMA. Raise warning for #1606 * test duplicates * Fix assert * Coverage * Typing * T fixes
13 lines
300 B
Python
13 lines
300 B
Python
"""Typing Helpers for Home-Assistant."""
|
|
from typing import Dict, Any, Tuple
|
|
|
|
import homeassistant.core
|
|
|
|
# pylint: disable=invalid-name
|
|
|
|
GPSType = Tuple[float, float]
|
|
ConfigType = Dict[str, Any]
|
|
HomeAssistantType = homeassistant.core.HomeAssistant
|
|
|
|
# Custom type for recorder Queries
|
|
QueryType = Any
|