def print_values_yaml()

in 02_bootstrap-scripts-python/bootstrap/bootstrap.py [0:0]


def print_values_yaml(values: dict):
    res = ""
    for line in ruamel.yaml.round_trip_dump(values, indent=5, block_seq_indent=3).splitlines(True):
        res += line
    print(res)