fix lines

This commit is contained in:
Jesse Bannon 2022-09-07 13:50:04 -07:00
parent 333f9f31cd
commit 15cf62fe42
6 changed files with 164 additions and 164 deletions

View file

@ -104,7 +104,7 @@ class FileMetadata:
output_str += f"{_indent}- \n" output_str += f"{_indent}- \n"
output_str += _indent_lines(_recursive_lines(sub_value), indent=indent + 2) output_str += _indent_lines(_recursive_lines(sub_value), indent=indent + 2)
elif isinstance(value, str): # multi-line string elif isinstance(value, str): # multi-line string
output_str += _indent_lines(value, indent=indent + 2) output_str += _indent_lines(value, indent=indent)
else: else:
assert False, "should never reach here" assert False, "should never reach here"
return output_str return output_str