Await bot.add_cog

This commit is contained in:
aikaterna
2022-04-04 13:05:52 -07:00
parent 3c99a970ac
commit 3cf90d4214
35 changed files with 68 additions and 67 deletions

View File

@@ -3,5 +3,5 @@ from .trackdecoder import TrackDecoder
__red_end_user_data_statement__ = "This cog does not persistently store data or metadata about users."
def setup(bot):
bot.add_cog(TrackDecoder(bot))
async def setup(bot):
await bot.add_cog(TrackDecoder(bot))