Skip to content

Commit f549da8

Browse files
committed
Fix error on add cogs
1 parent 0499352 commit f549da8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cogs/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ async def help(self, ctx):
9898
await ctx.send(embed=embed)
9999

100100
async def setup(client):
101-
await client.add_cog(Commands(client))
101+
client.add_cog(Commands(client))

cogs/status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ async def status(self, ctx):
5959
await ctx.send(embed=embed)
6060

6161
async def setup(client):
62-
await client.add_cog(Status(client))
62+
client.add_cog(Status(client))

0 commit comments

Comments
 (0)