mirror of
https://github.com/esphome/esphome.git
synced 2024-11-14 11:08:10 +01:00
19 lines
441 B
Python
19 lines
441 B
Python
|
"""This helper module tracks commonly used types in the esphome python codebase."""
|
||
|
from typing import Dict, Union, List
|
||
|
|
||
|
from esphome.core import ID, Lambda, EsphomeCore
|
||
|
|
||
|
ConfigFragmentType = Union[
|
||
|
str,
|
||
|
int,
|
||
|
float,
|
||
|
None,
|
||
|
Dict[Union[str, int], "ConfigFragmentType"],
|
||
|
List["ConfigFragmentType"],
|
||
|
ID,
|
||
|
Lambda,
|
||
|
]
|
||
|
ConfigType = Dict[str, ConfigFragmentType]
|
||
|
CoreType = EsphomeCore
|
||
|
ConfigPathType = Union[str, int]
|