From 241403f5fb2e8b1eb77c5aea2ed20fed472b518c Mon Sep 17 00:00:00 2001 From: Vivek Santayana Date: Sat, 17 Jul 2021 14:00:23 +0100 Subject: [PATCH] Removed async await test function --- app/cogs/events/on_ready.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/cogs/events/on_ready.py b/app/cogs/events/on_ready.py index 552d8d8..09adf8a 100644 --- a/app/cogs/events/on_ready.py +++ b/app/cogs/events/on_ready.py @@ -17,9 +17,6 @@ class on_ready(commands.Cog, name='On Ready Events'): @commands.Cog.listener() async def on_ready(self): - async def test(self): - await self.client.get_channel(865348933022515220).send('Foo') - #### Create any missing config entries for guilds for guild in self.client.guilds: setConfig(guild) @@ -40,7 +37,5 @@ class on_ready(commands.Cog, name='On Ready Events'): # unloadCogs('slashcommands') # loadCogs('slashcommands') - await test(self) - def setup(client): client.add_cog(on_ready(client)) \ No newline at end of file