in 02_bootstrap-scripts-python/bootstrap/bootstrap.py [0:0]
5 lines of code
2 McCabe index (conditional complexity)
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)