Cleanup part 2 and Beta 20 requirements

This commit is contained in:
aikaterna
2018-08-19 20:23:44 -07:00
parent 4f5eb77733
commit 76e8c90b5b
17 changed files with 31 additions and 44 deletions

View File

@@ -1,7 +1,5 @@
from discord.ext import commands
from .chatchart import Chatchart
def setup(bot: commands.Bot):
n = Chatchart(bot)
bot.add_cog(n)
def setup(bot):
bot.add_cog(Chatchart(bot))

View File

@@ -13,7 +13,7 @@ matplotlib.use("agg")
import matplotlib.pyplot as plt
plt.switch_backend("agg")
from discord.ext import commands
from redbot.core import commands
class Chatchart: