Remove EOL whitespace globally

This commit is contained in:
mrg
2020-11-03 06:29:17 -08:00
parent aec5865d71
commit da721a677d
295 changed files with 2808 additions and 2811 deletions
+3 -3
View File
@@ -25,16 +25,16 @@ def parse_html(file, comment):
end_tag = comment+'-->'
with open(file, 'r') as f:
file_string = f.read()
with open(file, 'w') as f:
file_string = file_string.replace(start_tag,"")
file_string = file_string.replace(end_tag,"")
f.write(file_string)
def uncomment(comments):
comment_files = []
for datasheet in datasheet_list:
+3 -3
View File
@@ -112,7 +112,7 @@ def parse_characterizer_csv(f, pages):
DATETIME = row[col]
col += 1
ANALYTICAL_MODEL = row[col]
col += 1
@@ -121,7 +121,7 @@ def parse_characterizer_csv(f, pages):
LVS = row[col]
col += 1
AREA = row[col]
col += 1
@@ -565,7 +565,7 @@ def parse_characterizer_csv(f, pages):
for element in row[col_start:col-1]:
sheet.description.append(str(element))
break
# parse initial power and leakage information
# parse initial power and leakage information
while(True):
start = col
if(row[col].startswith('power')):