summaryrefslogtreecommitdiff
path: root/lib/python/qmk/path.py
diff options
context:
space:
mode:
authorErovia <erovia@users.noreply.github.com>2020-01-07 21:54:21 +0100
committerskullydazed <skullydazed@users.noreply.github.com>2020-02-15 15:19:03 -0800
commit8eeab1112aa1ca7336f88867a9a2ab680ae94b53 (patch)
tree60627f2d1aa5f6bb1d3345d9dbb7268b7d6ed3eb /lib/python/qmk/path.py
parent988bfffca2715df3f227c462533d350ecbeac6c0 (diff)
Fix commandline parsing and flake8 findings, rebase
Fixed commandline and config parsing. Thx @xplusplus. Rebased on master and fixed merge conflicts.
Diffstat (limited to 'lib/python/qmk/path.py')
-rw-r--r--lib/python/qmk/path.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/qmk/path.py b/lib/python/qmk/path.py
index 0cdfe353c5..bb28049b9d 100644
--- a/lib/python/qmk/path.py
+++ b/lib/python/qmk/path.py
@@ -5,6 +5,7 @@ import os
from qmk.errors import NoSuchKeyboardError
+
def keymap(keyboard):
"""Locate the correct directory for storing a keymap.
@@ -33,6 +34,7 @@ def normpath(path):
return os.path.normpath(os.path.join(os.environ['ORIG_CWD'], path))
+
def file_lines(filename):
""" Return a files content, line by line