mirror of
https://github.com/esphome/esphome.git
synced 2024-11-12 10:16:02 +01:00
07c3ee75e5
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: J. Nick Koston <nick@koston.org>
20 lines
430 B
Python
20 lines
430 B
Python
"""This helper module tracks commonly used types in the esphome python codebase."""
|
|
|
|
from typing import Union
|
|
|
|
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]
|