Skip to content

Commit bb984e8

Browse files
committed
individual-size-graph.py: Modify title to kilobytes
The size output comes from `du -s`. That's kilobytes, not bytes.
1 parent 0eaac54 commit bb984e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

individual-size-graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
print(name)
3030
print(sizes)
3131
sizes.plot(y="size", color="green")
32-
plt.title(f'Size evolution of "{name}" binary (bytes)')
32+
plt.title(f'Size evolution of "{name}" binary (kilobytes)')
3333
plt.xticks(rotation=45)
3434
plt.savefig(f"individual-size-results/{name}.png", dpi=199)
3535
plt.clf()

0 commit comments

Comments
 (0)