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

10 lines
253 B
Python

"""Deal with YAML input."""
from __future__ import annotations
from annotatedyaml.input import UndefinedSubstitution, extract_inputs, substitute
from .objects import Input
__all__ = ["Input", "UndefinedSubstitution", "extract_inputs", "substitute"]