Prepend list items with "- "

pull/1/head
udf 2018-11-21 22:38:02 +02:00
parent e760062218
commit 778a604d69
Signed by: kate
GPG Key ID: E40724BAD73AF77B
1 changed files with 1 additions and 2 deletions

View File

@ -74,8 +74,7 @@ def yaml_format(obj, indent=0):
result.append('\n')
indent += 2
for x in obj:
result.append(' ' * indent)
result.append(yaml_format(x, indent))
result.append(f"{' ' * indent}- {yaml_format(x, indent + 2)}")
result.append('\n')
result.pop()
indent -= 2