Skip to content

Commit 57151e1

Browse files
committed
unicode characters in yaml
1 parent 3ab02fc commit 57151e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vao-recorder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def typer_warn(message: str):
8787

8888

8989
def yaml_dump(data, to_file: Path = None) -> str:
90-
content = yaml.dump(data)
90+
content = yaml.dump(data, allow_unicode=True)
9191
if to_file:
9292
with open(to_file, 'w') as f:
9393
f.write(content)

0 commit comments

Comments
 (0)