mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-10-22 16:32:59 +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)
|
lock = self._locks.get(bucket)
|
||||||
if lock is None:
|
if lock is None:
|
||||||
lock = asyncio.Lock(loop=self.loop)
|
lock = asyncio.Lock()
|
||||||
if bucket is not None:
|
if bucket is not None:
|
||||||
self._locks[bucket] = lock
|
self._locks[bucket] = lock
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user