Skip to content

Commit

Permalink
remove extraneous comment
Browse files Browse the repository at this point in the history
  • Loading branch information
skullydazed committed Jan 8, 2021
1 parent 959f566 commit 58fcdf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/qmk/c_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')):
Expand Down

0 comments on commit 58fcdf8

Please sign in to comment.