Add delta to stats

This commit is contained in:
Son NK 2020-09-12 16:22:48 +02:00
parent 85beb774c7
commit 5cfeb4c3f2
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ def increase_percent(old, new) -> str:
return "N/A"
increase = (new - old) / old * 100
return f"{increase:.1f}%"
return f"{increase:.1f}%. Delta: {new-old}"
def stats():