Skip to content

Commit 6648fd5

Browse files
committed
fix copilot mistakes
1 parent 77523d0 commit 6648fd5

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

discord/client.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
TextChannel,
8585
VoiceChannel,
8686
)
87-
from .interaction import Interaction
8887
from .interactions import Interaction
8988
from .member import Member
9089
from .message import Message
@@ -250,9 +249,9 @@ def __init__(
250249
self.loop: asyncio.AbstractEventLoop = (
251250
asyncio.get_event_loop() if loop is None else loop
252251
)
253-
self._listeners: dict[str, list[tuple[asyncio.Future, Callable[..., bool]]]] = (
254-
{}
255-
)
252+
self._listeners: dict[
253+
str, list[tuple[asyncio.Future, Callable[..., bool]]]
254+
] = {}
256255
self.shard_id: int | None = options.get("shard_id")
257256
self.shard_count: int | None = options.get("shard_count")
258257

0 commit comments

Comments
 (0)