1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-17 23:53:49 +01:00
Files
core/homeassistant/util/yaml/dumper.py
Jan-Philipp Benecke 7b9ea63f17 Split out yaml loading into own package (#140683)
* Split out yaml loading into library

* Code review

* Code review

* Fix check config script
2025-03-15 22:26:18 -04:00

6 lines
193 B
Python

"""Custom dumper and representers."""
from annotatedyaml.dumper import add_representer, dump, represent_odict, save_yaml
__all__ = ["add_representer", "dump", "represent_odict", "save_yaml"]