Update merge_yaml.py

This commit is contained in:
2025-08-27 20:10:20 +00:00
parent 0d2aa11fca
commit 783c4fcb33

View File

@ -30,6 +30,8 @@ def main():
yaml1 = yaml.load(f1)
yaml2 = yaml.load(f2)
merged = deep_merge_yaml(yaml1, yaml2)
from io import StringIO
output = StringIO()
yaml.dump(merged, output)