iw5: test guns (#4)
All checks were successful
Build / build-linux (push) Successful in 7s

This commit is contained in:
2024-05-31 09:59:13 +00:00
parent 6493347cd1
commit a6adab0035
5 changed files with 69 additions and 8 deletions

View File

@ -4,6 +4,7 @@ def erase_commented_lines(filename, out):
with open(filename, 'r') as file:
lines = file.readlines()
# gcc leaves these "comments" at the start of the file
lines = [line for line in lines if not line.startswith('#')]
with open(out, 'w') as file: