diff options
Diffstat (limited to 'lib/python/qmk/path.py')
-rw-r--r-- | lib/python/qmk/path.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/qmk/path.py b/lib/python/qmk/path.py index f2a8346a5..cf087265f 100644 --- a/lib/python/qmk/path.py +++ b/lib/python/qmk/path.py | |||
@@ -1,7 +1,10 @@ | |||
1 | """Functions that help us work with files and folders. | 1 | """Functions that help us work with files and folders. |
2 | """ | 2 | """ |
3 | import logging | ||
3 | import os | 4 | import os |
4 | 5 | ||
6 | from qmk.errors import NoSuchKeyboardError | ||
7 | |||
5 | 8 | ||
6 | def keymap(keyboard): | 9 | def keymap(keyboard): |
7 | """Locate the correct directory for storing a keymap. | 10 | """Locate the correct directory for storing a keymap. |