From 60c7f840ea05122cda130cff6f873997c72e8a95 Mon Sep 17 00:00:00 2001 From: Aevann Date: Thu, 7 Nov 2024 14:04:41 +0200 Subject: [PATCH] remove unnecessary --- files/helpers/stats.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/files/helpers/stats.py b/files/helpers/stats.py index 1004d05fc..c1f3fb5f0 100644 --- a/files/helpers/stats.py +++ b/files/helpers/stats.py @@ -76,8 +76,6 @@ def chart(kind): votes_chart = plt.subplot2grid((chart_width, chart_width), (30, 0), rowspan=6, colspan=chart_width) chat_chart = plt.subplot2grid((chart_width, chart_width), (40, 0), rowspan=6, colspan=chart_width) - signup_chart.grid(), posts_chart.grid(), comments_chart.grid() - signup_chart.plot(daily_times, daily_signups, color='red') posts_chart.plot(daily_times, post_stats, color='blue') comments_chart.plot(daily_times, comment_stats, color='purple')