mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-08 10:53:10 +00:00
Fix one more remaining loop passing for 3.8 in a Lock
This commit is contained in:
@ -113,7 +113,7 @@ class HTTPClient:
|
||||
|
||||
lock = self._locks.get(bucket)
|
||||
if lock is None:
|
||||
lock = asyncio.Lock(loop=self.loop)
|
||||
lock = asyncio.Lock()
|
||||
if bucket is not None:
|
||||
self._locks[bucket] = lock
|
||||
|
||||
|
Reference in New Issue
Block a user