Merge "Force certain indenting style"

This commit is contained in:
Zuul
2019-07-24 23:37:30 +00:00
committed by Gerrit Code Review

View File

@@ -23,6 +23,7 @@ def dumps(obj):
stream = ruamel.yaml.compat.StringIO()
yaml.explicit_start = True
yaml.indent(mapping=2, sequence=4, offset=2)
yaml.dump(obj, stream)
return stream.getvalue()