From 7b7a5ab34155cae7a2683a52235aec9d7c02e662 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Fri, 19 Jun 2020 20:13:09 +0100 Subject: [PATCH] Commented out code for Reminder.py --- cogs/Reminder.py | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/cogs/Reminder.py b/cogs/Reminder.py index cbc509ba..202d8a0c 100644 --- a/cogs/Reminder.py +++ b/cogs/Reminder.py @@ -1,18 +1,13 @@ -import _thread -from datetime import datetime -from datetime import timedelta -from time import sleep - from discord.ext import commands class Reminder(commands.Cog): def __init__(self, bot): self.bot = bot - +""" @commands.Cog.listener() @commands.has_any_role('Hamothy') - async def ex(self, ctx): + async def (): time_left = [float(i) for i in str(datetime.now().time()).split(":")] time_left = timedelta(hours=2) - timedelta(hours=time_left[0] % 2, minutes=time_left[1], seconds=time_left[2]) sleep(round(time_left.total_seconds())) @@ -21,8 +16,8 @@ class Reminder(commands.Cog): await ctx.send("Bump the Server Idiots") sleep(7200) - _thread.start_new_thread(ex, ()) - + _thread.start_new_thread(ex(self=self, ctx), ()) +""" def setup(bot): bot.add_cog(Reminder(bot))