Merge branch 'indent' into 'master'

metadata: set mapping indentation to 2

Closes #1154

See merge request fdroid/fdroidserver!1385
This commit is contained in:
Hans-Christoph Steiner 2023-09-08 08:26:38 +00:00
commit 38c0463bd0
No known key found for this signature in database
6 changed files with 41 additions and 41 deletions

View file

@ -1267,7 +1267,7 @@ def write_yaml(mf, app):
_del_duplicated_NoSourceSince(app)
yaml_app = _app_to_yaml(app)
yaml = ruamel.yaml.YAML()
yaml.indent(mapping=4, sequence=4, offset=2)
yaml.indent(mapping=2, sequence=4, offset=2)
yaml.dump(yaml_app, stream=mf)