mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-06-27 17:01:20 -04:00
Remove python semicolons
This commit is contained in:
parent
d0b122a58a
commit
0e3030dc23
5 changed files with 8 additions and 8 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue