Add year to graph title

Signed-off-by: AKU <tom@tdpain.net>
This commit is contained in:
akp 2021-12-19 21:55:27 +00:00
parent 666d0b2773
commit 918487c2a9
No known key found for this signature in database
GPG key ID: AA5726202C8879B7
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 55 KiB

Before After
Before After

View file

@ -78,7 +78,7 @@ for i, language in enumerate(benchmark_data):
axp1.plot((day, days[i+1]), (part_one_times[i], part_one_times[i+1]), "-", color=colour)
axp2.plot((day, days[i+1]), (part_two_times[i], part_two_times[i+1]), "-", color=colour)
figure.suptitle("Average challenge running time")
figure.suptitle(f"Average {YEAR} challenge running time")
axp1.set_title("Part one")
axp2.set_title("Part two")