remove unnecessary

master
Aevann 2024-11-07 14:04:41 +02:00
parent 599e4a759e
commit 60c7f840ea
1 changed files with 0 additions and 2 deletions

View File

@ -76,8 +76,6 @@ def chart(kind):
votes_chart = plt.subplot2grid((chart_width, chart_width), (30, 0), rowspan=6, colspan=chart_width) 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) 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') signup_chart.plot(daily_times, daily_signups, color='red')
posts_chart.plot(daily_times, post_stats, color='blue') posts_chart.plot(daily_times, post_stats, color='blue')
comments_chart.plot(daily_times, comment_stats, color='purple') comments_chart.plot(daily_times, comment_stats, color='purple')