From b5a0fc25bc5f08496e100daf63e8b41d812eb1f1 Mon Sep 17 00:00:00 2001 From: retoor Date: Wed, 11 Dec 2024 19:18:10 +0000 Subject: [PATCH] fix: correct chart title from 'ignored' to 'popular' in score_last_7_days function --- src/drstats/statistics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drstats/statistics.py b/src/drstats/statistics.py index 32b070c..d9f4c4b 100644 --- a/src/drstats/statistics.py +++ b/src/drstats/statistics.py @@ -196,7 +196,7 @@ async def score_last_7_days(): plt.xticks(rotation=45) plt.xlabel("Ranter") plt.ylabel("Upvote count") - plt.title("Most ignored based on score regarding last 7 days") + plt.title("Most popular based on score regarding last 7 days") plt.legend() plt.savefig(f"export/score_last_7_days_{get_date_range_str()}.png")