We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77523d0 commit 6648fd5Copy full SHA for 6648fd5
discord/client.py
@@ -84,7 +84,6 @@
84
TextChannel,
85
VoiceChannel,
86
)
87
- from .interaction import Interaction
88
from .interactions import Interaction
89
from .member import Member
90
from .message import Message
@@ -250,9 +249,9 @@ def __init__(
250
249
self.loop: asyncio.AbstractEventLoop = (
251
asyncio.get_event_loop() if loop is None else loop
252
253
- self._listeners: dict[str, list[tuple[asyncio.Future, Callable[..., bool]]]] = (
254
- {}
255
- )
+ self._listeners: dict[
+ str, list[tuple[asyncio.Future, Callable[..., bool]]]
+ ] = {}
256
self.shard_id: int | None = options.get("shard_id")
257
self.shard_count: int | None = options.get("shard_count")
258
0 commit comments