Skip to content

Commit 780b88e

Browse files
committed
fix unicode bug
1 parent cfeccfa commit 780b88e

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
@@ -268,7 +268,7 @@ def get_config(path=DEFAULT_CONFIG_PATH) -> dict:
268268
_config = None
269269
if path.exists():
270270
with open(path, 'r') as f:
271-
_config = yaml.safe_load(f, allow_unicode=True)
271+
_config = yaml.safe_load(f)
272272
if not _config:
273273
typer_warn(f"No configuration found in {path}. Generate one.")
274274
_config = config(path)

0 commit comments

Comments
 (0)