We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ab02fc commit 57151e1Copy full SHA for 57151e1
1 file changed
vao-recorder.py
@@ -87,7 +87,7 @@ def typer_warn(message: str):
87
88
89
def yaml_dump(data, to_file: Path = None) -> str:
90
- content = yaml.dump(data)
+ content = yaml.dump(data, allow_unicode=True)
91
if to_file:
92
with open(to_file, 'w') as f:
93
f.write(content)
0 commit comments