Remove python semicolons

This commit is contained in:
Jordan Carlin 2024-12-17 15:37:19 -08:00
parent d0b122a58a
commit 0e3030dc23
No known key found for this signature in database
5 changed files with 8 additions and 8 deletions

View file

@ -43,8 +43,8 @@ def tabulate_arch_sweep(directory):
match = re.search(p, line)
if match:
prog = match.group(1)
result = match.group(2);
d[arch][prog] = result;
result = match.group(2)
d[arch][prog] = result
#print(match.group(1)+" " + match.group(2))
f.close()
for arch in [""] + archs:
@ -53,7 +53,7 @@ def tabulate_arch_sweep(directory):
for prog in d[archs[0]]:
print(prog, end="\t")
for arch in archs:
entry = d[arch].get(prog, "n/a");
entry = d[arch].get(prog, "n/a")
print (entry, end="\t")
print("")
print("New geo mean", end="\t")