diff options
author | Zach White <skullydazed@gmail.com> | 2021-01-08 00:21:51 -0800 |
---|---|---|
committer | Zach White <skullydazed@drpepper.org> | 2021-01-08 08:40:23 -0800 |
commit | 58fcdf8c07e5c1363b6b3eaf23883853dfd12f53 (patch) | |
tree | e511df2d59010ce5b4b49e4467c6f6e6abd43dd2 /lib/python/qmk/c_parse.py | |
parent | 959f566118e9f0243aae054bf1e044bf3f60fa37 (diff) | |
download | qmk_firmware-58fcdf8c07e5c1363b6b3eaf23883853dfd12f53.tar.gz qmk_firmware-58fcdf8c07e5c1363b6b3eaf23883853dfd12f53.zip |
remove extraneous comment
Diffstat (limited to 'lib/python/qmk/c_parse.py')
-rw-r--r-- | lib/python/qmk/c_parse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/c_parse.py b/lib/python/qmk/c_parse.py index 0338484ec..ade3e3805 100644 --- a/lib/python/qmk/c_parse.py +++ b/lib/python/qmk/c_parse.py | |||
@@ -103,7 +103,7 @@ def parse_config_h_file(config_h_file, config_h=None): | |||
103 | 103 | ||
104 | if config_h_file.exists(): | 104 | if config_h_file.exists(): |
105 | config_h_text = config_h_file.read_text() | 105 | config_h_text = config_h_file.read_text() |
106 | config_h_text = config_h_text.replace('\\\n', '') # Why are you here? | 106 | config_h_text = config_h_text.replace('\\\n', '') |
107 | config_h_text = strip_multiline_comment(config_h_text) | 107 | config_h_text = strip_multiline_comment(config_h_text) |
108 | 108 | ||
109 | for linenum, line in enumerate(config_h_text.split('\n')): | 109 | for linenum, line in enumerate(config_h_text.split('\n')): |