mirror of
https://github.com/home-assistant/core.git
synced 2025-04-24 17:27:52 +00:00

* Bump annotatedyaml to 0.4.2 changelog: https://github.com/home-assistant-libs/annotatedyaml/compare/v0.2.0...v0.4.2 ~10-11% performance improvement * tweak imports * bump to .3 to make pylint happy * bump again for fixes --------- Co-authored-by: Shay Levy <levyshay1@gmail.com>
8 lines
216 B
Python
8 lines
216 B
Python
"""Custom yaml object types."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from annotatedyaml import Input, NodeDictClass, NodeListClass, NodeStrClass
|
|
|
|
__all__ = ["Input", "NodeDictClass", "NodeListClass", "NodeStrClass"]
|