Fix more deprecation warnings for 3.8

This commit is contained in:
Rapptz
2019-11-26 05:19:11 -05:00
parent f554819506
commit c62b6c3e88
3 changed files with 3 additions and 3 deletions

View File

@ -110,7 +110,7 @@ Doing something during cancellation:
def __init__(self, bot):
self.bot= bot
self._batch = []
self.lock = asyncio.Lock(loop=bot.loop)
self.lock = asyncio.Lock()
self.bulker.start()
async def do_bulk(self):