Skip to content

Commit fae287e

Browse files
Move emoji to the end
1 parent 70fcb28 commit fae287e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/csv_to_md.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get_emoji(x):
3737
difference = int(d)
3838
percent = pretty(0 if float(baseline[1]) == 0.0 else 100 * d / float(baseline[1]))
3939
emoji = get_emoji(float(percent))
40-
table.append([name, time, stdev, emoji, difference, percent])
40+
table.append([name, time, stdev, difference, percent, emoji])
4141

4242
header = ["name", "time", "stdev", "", "difference", "percent"]
4343
print(tab.tabulate(table, header, tablefmt="github"))

0 commit comments

Comments
 (0)