From 0137c4a3105789fa5ff96756b3dad3cba50fc852 Mon Sep 17 00:00:00 2001 From: zvecr Date: Mon, 9 Jan 2023 19:39:58 +0000 Subject: [PATCH] Handle userspace xap.hjson spec files - remove prints.... --- lib/python/qmk/xap/common.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/python/qmk/xap/common.py b/lib/python/qmk/xap/common.py index e44e2b6643e..82e1887629a 100755 --- a/lib/python/qmk/xap/common.py +++ b/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