diff options
Diffstat (limited to 'cogs/trans.py')
-rwxr-xr-x | cogs/trans.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cogs/trans.py b/cogs/trans.py index a18206f..eb4246a 100755 --- a/cogs/trans.py +++ b/cogs/trans.py @@ -74,5 +74,5 @@ class Trans(commands.Cog): await ctx.send(embed=embed) -def setup(bot): - bot.add_cog(Trans(bot)) +async def setup(bot): + await bot.add_cog(Trans(bot)) |