aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python/qmk/path.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/qmk/path.py')
-rw-r--r--lib/python/qmk/path.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/python/qmk/path.py b/lib/python/qmk/path.py
index bb28049b9..cf087265f 100644
--- a/lib/python/qmk/path.py
+++ b/lib/python/qmk/path.py
@@ -33,16 +33,3 @@ def normpath(path):
return os.path.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
-
- Args:
- filename: path to the file
-
- Returns:
- an list, in which each item is a line of the file
- """
- with open(filename, "r") as fd:
- return fd.readlines()