mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
5 lines
265 B
Python
5 lines
265 B
Python
# Bridge module for YAML loading with multiple backend support.
|
|
# Uses PyYAML if available, falls back to syck (python3-syck on Debian).
|
|
# Exists so importing code can do: from auto.lib.yamlish import load_yaml
|
|
from .config import load_yaml
|
|
__all__ = ["load_yaml"]
|