Deleted redundant space

pull/2/head
sgoudham 4 years ago
parent 5b71d911c0
commit fa2ebb75ee

@ -4,6 +4,8 @@ from discord.ext import commands
class Reminder(commands.Cog): class Reminder(commands.Cog):
def __init__(self, bot): def __init__(self, bot):
self.bot = bot self.bot = bot
""" """
@commands.Cog.listener() @commands.Cog.listener()
@commands.is.owner() @commands.is.owner()
@ -19,5 +21,6 @@ class Reminder(commands.Cog):
_thread.start_new_thread(ex(self=self, ctx), ()) _thread.start_new_thread(ex(self=self, ctx), ())
""" """
def setup(bot): def setup(bot):
bot.add_cog(Reminder(bot)) bot.add_cog(Reminder(bot))

Loading…
Cancel
Save