1
0
Fork 0

Drop bs4 dependency, update docs, minor improvements

This commit is contained in:
Erovia 2019-10-24 20:33:58 +02:00 committed by skullydazed
parent d257a98cb8
commit 3ed1223678
5 changed files with 20 additions and 25 deletions

View file

@ -21,8 +21,8 @@ def parse_rules_mk(file_path):
# group(2) = operator (eg.: '=', '+=')
# group(3) = value(s)
rules_mk_regex = re.compile(r"^\s*(\w+)\s*([\?\:\+\-]?=)\s*(\S.*?)(?=\s*(\#|$))")
mk_content = qmk.path.unicode_lines(file_path)
parsed_file = dict()
mk_content = qmk.path.file_lines(file_path)
for line in mk_content:
found = rules_mk_regex.search(line)
if found: