Просмотр исходного кода

Handle userspace xap.hjson spec files - remove prints....

zvecr 3 лет назад
Родитель
Сommit
0137c4a310
1 измененных файлов с 0 добавлено и 3 удалено
  1. 0 3
      lib/python/qmk/xap/common.py

+ 0 - 3
lib/python/qmk/xap/common.py

@@ -104,9 +104,6 @@ def _find_km_spec(kb, km):
     keymap_spec = keymap_dir / XAP_SPEC
     userspace_spec = USERSPACE_DIR / username / XAP_SPEC
 
-    print(keymap_spec.exists())
-    print(userspace_spec.exists())
-
     # In the case of both userspace and keymap - keymap wins
     return keymap_spec if keymap_spec.exists() else userspace_spec