diff --git a/cogs/basic.py b/cogs/basic.py index ea2fd57..f32d5eb 100644 --- a/cogs/basic.py +++ b/cogs/basic.py @@ -1,5 +1,4 @@ import time -from tkinter import NONE from discord.ext import commands @@ -22,5 +21,7 @@ async def ping(self, ctx): ping = (time.monotonic() - before) * 1000 await message.edit(content=f":ping_pong: Pong ! in `{float(round(ping/1000.0,3))}s` ||{int(ping)}ms||") + + def setup(bot): bot.add_cog(Basic(bot))