diff --git a/.config/karabiner/compile.py b/.config/karabiner/compile.py index 67ca187..e283164 100755 --- a/.config/karabiner/compile.py +++ b/.config/karabiner/compile.py @@ -6,4 +6,4 @@ import json with open('karabiner.yaml') as in_f: with open('karabiner.json', 'w') as out_f: - json.dump(yaml.load(in_f), out_f, indent=4) + json.dump(yaml.load(in_f, Loader=yaml.SafeLoader), out_f, indent=4)