Skip to content

Commit 7c07ab9

Browse files
committed
Merge branch 'get_or_fetch' of https://github.com/Lumabots/pycord into pr/2776
2 parents c4c5459 + 18f7dcf commit 7c07ab9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

discord/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,9 +249,9 @@ def __init__(
249249
self.loop: asyncio.AbstractEventLoop = (
250250
asyncio.get_event_loop() if loop is None else loop
251251
)
252-
self._listeners: dict[str, list[tuple[asyncio.Future, Callable[..., bool]]]] = (
253-
{}
254-
)
252+
self._listeners: dict[
253+
str, list[tuple[asyncio.Future, Callable[..., bool]]]
254+
] = {}
255255
self.shard_id: int | None = options.get("shard_id")
256256
self.shard_count: int | None = options.get("shard_count")
257257

0 commit comments

Comments
 (0)