浏览代码

remove extraneous comment

Zach White 4 年之前
父节点
当前提交
58fcdf8c07
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/python/qmk/c_parse.py

+ 1 - 1
lib/python/qmk/c_parse.py

@@ -103,7 +103,7 @@ def parse_config_h_file(config_h_file, config_h=None):
 
     if config_h_file.exists():
         config_h_text = config_h_file.read_text()
-        config_h_text = config_h_text.replace('\\\n', '') # Why are you here?
+        config_h_text = config_h_text.replace('\\\n', '')
         config_h_text = strip_multiline_comment(config_h_text)
 
         for linenum, line in enumerate(config_h_text.split('\n')):