From 248c6444726920180fdd3bf7c6fccb6884f140d4 Mon Sep 17 00:00:00 2001 From: Florian SYLVAIN Date: Thu, 4 Mar 2021 16:34:30 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20-=20$osu=5Facc=20graph=20improve?= =?UTF-8?q?ment/fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python/osu_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/osu_api.py b/python/osu_api.py index c7bc8b7..5793710 100644 --- a/python/osu_api.py +++ b/python/osu_api.py @@ -48,7 +48,7 @@ async def ask_osu_acc(username): plt.scatter(list(range(1, nb_games)), lst, color='#ffca2b') plt.axis([1, nb_games-1, min_games, 100]) plt.xticks(range(1, nb_games)) - plt.yticks(range(min_games, 100, 5)) + plt.yticks(range(min_games, 100, 3)) plt.grid(linewidth=0.5) plt.title('Accuracy of ' + username + ' on his last ' + str(nb_games-1) + ' games.', fontsize=20)