We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57151e1 commit cfeccfaCopy full SHA for cfeccfa
1 file changed
vao-recorder.py
@@ -268,7 +268,7 @@ def get_config(path=DEFAULT_CONFIG_PATH) -> dict:
268
_config = None
269
if path.exists():
270
with open(path, 'r') as f:
271
- _config = yaml.safe_load(f)
+ _config = yaml.safe_load(f, allow_unicode=True)
272
if not _config:
273
typer_warn(f"No configuration found in {path}. Generate one.")
274
_config = config(path)
0 commit comments