[V3 Streams] Fix streams race condition (#1834)

This commit is contained in:
Tobotimus
2018-06-10 00:12:58 +10:00
committed by GitHub
parent 9e7bc94aab
commit a070dffb93
2 changed files with 14 additions and 6 deletions

View File

@@ -1,5 +1,7 @@
from .streams import Streams
def setup(bot):
bot.add_cog(Streams(bot))
async def setup(bot):
cog = Streams(bot)
await cog.initialize()
bot.add_cog(cog)